/* ═══════════════════════════════════════════════════════════════
   SOYA RESTAURANT — ULTRA LUXURY CSS
   Design: Cinematic Dark Luxury | Glassmorphism | Apple-inspired
═══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────
   CSS CUSTOM PROPERTIES
────────────────────────────────────── */
:root {
  /* Colors */
  --black:      #08080a;
  --deep-black: #050507;
  --charcoal:   #111114;
  --card-bg:    #0f0f12;
  --white:      #f8f5f0;
  --soft-white: #e8e4dd;
  --beige:      #c8b99a;
  --gold:       #c9a96e;
  --gold-light: #e4c88a;
  --gold-dark:  #9a7a44;
  --crimson:    #8b1a2a;
  --crimson-light: #b02035;

  /* Glass */
  --glass-bg:     rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur:   blur(20px);
  --glass-hover:  rgba(255, 255, 255, 0.07);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 160px);
  --container:   1280px;

  /* Transitions */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0.0, 0, 0.2, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration:  0.4s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) { body { cursor: auto; } }

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: none; border: none; background: none; font-family: inherit; }
@media (hover: none) { button { cursor: pointer; } }
ul { list-style: none; }
input, select, textarea {
  font-family: var(--font-body);
  color: var(--white);
  background: transparent;
  border: none;
  outline: none;
}
select option { background: var(--charcoal); color: var(--white); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ──────────────────────────────────────
   CUSTOM CURSOR
────────────────────────────────────── */
.cursor-outer, .cursor-inner {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-outer {
  width: 40px; height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  transition: width 0.3s var(--spring), height 0.3s var(--spring),
              border-color 0.3s, opacity 0.3s;
}
.cursor-inner {
  width: 6px; height: 6px;
  background: var(--gold);
  transition: width 0.15s, height 0.15s, opacity 0.3s;
}
.cursor-outer.hover {
  width: 60px; height: 60px;
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}
.cursor-inner.hover { width: 4px; height: 4px; }
@media (max-width: 768px) {
  .cursor-outer, .cursor-inner { display: none; }
}

/* ──────────────────────────────────────
   PRELOADER
────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--deep-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
#preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.preloader-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.preloader-s {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 100px);
  font-weight: 200;
  color: var(--gold);
  animation: preloaderPulse 1.5s ease-in-out infinite;
  line-height: 1;
}
.preloader-text {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 200;
  letter-spacing: 0.4em;
  color: var(--white);
}
.preloader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: preloaderLine 2s var(--ease) forwards;
}
.preloader-tagline {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--beige);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.5s ease 1s forwards;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes preloaderLine {
  to { width: 200px; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ──────────────────────────────────────
   GLASS CARD UTILITY
────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

/* ──────────────────────────────────────
   BUTTONS
────────────────────────────────────── */
.btn-primary, .btn-secondary, .btn-ghost, .btn-nav-reserve {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 169, 110, 0.4);
}
.btn-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.25), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover .btn-glow { opacity: 1; }

.btn-secondary {
  border: 1px solid rgba(201, 169, 110, 0.5);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}
.btn-secondary:hover {
  background: rgba(201, 169, 110, 0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.2);
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--soft-white);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 12px; }
.btn-full { width: 100%; justify-content: center; }
.btn-arrow { transition: transform 0.3s var(--spring); }
.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow { transform: translateX(4px); }

/* ──────────────────────────────────────
   SECTION TAGS & TITLES
────────────────────────────────────── */
.section-tag {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before, .section-tag::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-subtitle {
  font-size: 16px;
  color: rgba(232, 228, 221, 0.65);
  max-width: 520px;
  line-height: 1.75;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.section-header .section-tag { justify-content: center; }
.section-header .section-subtitle { margin: 0 auto; }

/* ──────────────────────────────────────
   REVEAL ANIMATIONS
────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal="up"]    { transform: translateY(50px); }
[data-reveal="left"]  { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal].revealed {
  opacity: 1;
  transform: translate(0);
}

/* ──────────────────────────────────────
   NAVIGATION
────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: padding 0.4s var(--ease), background 0.4s;
}
.navbar.scrolled {
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-symbol {
  color: var(--gold);
  font-size: 18px;
  animation: rotateSym 8s linear infinite;
}
@keyframes rotateSym {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 228, 221, 0.7);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left 0.3s var(--ease), right 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.btn-nav-reserve {
  display: inline-flex;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.btn-nav-reserve:hover {
  box-shadow: 0 6px 30px rgba(201, 169, 110, 0.5);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: rgba(5, 5, 7, 0.97);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 300;
  color: rgba(232, 228, 221, 0.7);
  padding: 10px 40px;
  transition: color 0.3s, transform 0.3s;
}
.mobile-link:hover { color: var(--gold); transform: translateX(10px); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ──────────────────────────────────────
   HERO SECTION
────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img-wrap {
  position: absolute;
  inset: -10%;
  transition: transform 0.1s linear;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) saturate(0.9);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,10,0.3) 0%,
    rgba(8,8,10,0.1) 40%,
    rgba(8,8,10,0.5) 70%,
    rgba(8,8,10,0.95) 100%
  );
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(5,5,7,0.7) 100%);
}

/* Particle Canvas */
.particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Light Leaks */
.light-leak {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.light-leak-1 {
  width: 600px; height: 400px;
  top: -100px; right: -100px;
  background: radial-gradient(ellipse, rgba(139, 26, 42, 0.15), transparent 70%);
  animation: lightFloat1 8s ease-in-out infinite;
}
.light-leak-2 {
  width: 400px; height: 600px;
  bottom: 0; left: -100px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.08), transparent 70%);
  animation: lightFloat2 10s ease-in-out infinite;
}
.light-leak-3 {
  width: 800px; height: 200px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.04), transparent 70%);
  animation: lightFloat3 12s ease-in-out infinite;
}
@keyframes lightFloat1 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(-30px,20px);} }
@keyframes lightFloat2 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(20px,-30px);} }
@keyframes lightFloat3 { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 60px);
  max-width: 900px;
}
.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 2.2s forwards;
}
.badge-line {
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.badge-text {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 8vw, 110px);
  font-weight: 200;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}
.hero-title-line {
  display: block;
  overflow: hidden;
}
.hero-title-line span,
.line-1, .line-2, .line-3 {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: slideUp 1s var(--ease) forwards;
}
.line-1 { animation-delay: 2.3s; }
.line-2 { animation-delay: 2.45s; }
.line-3 { animation-delay: 2.6s; }
.hero-title .gold { color: var(--gold); font-style: italic; }

.hero-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(232, 228, 221, 0.65);
  margin-bottom: 44px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 2.9s forwards;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 3.1s forwards;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 0.8s ease 3.5s forwards;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-text {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--beige);
  opacity: 0.6;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 40px;
  background: rgba(8,8,10,0.6);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  opacity: 0;
  animation: fadeIn 0.8s ease 3.6s forwards;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 300;
  color: var(--gold);
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232, 228, 221, 0.5);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}
@media (max-width: 768px) {
  .stat-item { padding: 0 16px; }
  .stat-divider { height: 30px; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
}
@media (max-width: 500px) {
  .hero-stats { display: none; }
}

/* ──────────────────────────────────────
   ABOUT SECTION
────────────────────────────────────── */
.about {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.about-bg-glow {
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: -200px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(201,169,110,0.05), transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-img { width: 100%; height: 100%; object-fit: cover; }
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(8,8,10,0.5) 100%);
}
.about-float-card {
  position: absolute;
  bottom: -24px; right: -24px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 220px;
}
.float-icon { font-size: 20px; color: var(--gold); }
.float-label { font-size: 11px; letter-spacing: 0.2em; color: var(--beige); text-transform: uppercase; }
.float-title { font-family: var(--font-display); font-size: 17px; font-weight: 300; color: var(--white); line-height: 1.4; }

.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-text { font-size: 15px; color: rgba(232, 228, 221, 0.7); line-height: 1.85; }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 8px 0;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: border-color 0.3s, background 0.3s;
}
.pillar:hover {
  border-color: rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.04);
}
.pillar-icon { font-size: 16px; color: var(--gold); }
.pillar h4 { font-size: 13px; font-weight: 500; letter-spacing: 0.05em; color: var(--white); }
.pillar p { font-size: 12px; color: rgba(232,228,221,0.55); line-height: 1.6; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 500px; margin: 0 auto; }
  .about-float-card { right: 0; }
}

/* ──────────────────────────────────────
   MENU SECTION
────────────────────────────────────── */
.menu-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.menu-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20px 30px, rgba(201,169,110,0.08) 0%, transparent 0%),
    radial-gradient(1px 1px at 80px 60px, rgba(201,169,110,0.05) 0%, transparent 0%);
  background-size: 100px 60px;
  pointer-events: none;
  opacity: 0.5;
}

/* Menu Tabs */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.menu-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--glass-border);
  color: rgba(232,228,221,0.6);
  transition: all 0.3s var(--ease);
  cursor: none;
}
.menu-tab:hover {
  border-color: rgba(201,169,110,0.4);
  color: var(--beige);
  background: rgba(201,169,110,0.05);
}
.menu-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-color: transparent;
}
@media (hover: none) { .menu-tab { cursor: pointer; } }

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.menu-card {
  overflow: hidden;
  transition: transform 0.4s var(--spring), box-shadow 0.4s;
  cursor: default;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 40px rgba(201,169,110,0.1);
}
.menu-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.menu-food-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.menu-card:hover .menu-food-img { transform: scale(1.06); }
.menu-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 14px;
  background: rgba(8,8,10,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--beige);
}
.gold-badge {
  background: rgba(201,169,110,0.15);
  border-color: rgba(201,169,110,0.4);
  color: var(--gold-light);
}
.menu-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}
.menu-item-desc {
  font-size: 13px;
  color: rgba(232,228,221,0.55);
  line-height: 1.65;
}
.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--glass-border);
}
.menu-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
}
.menu-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--spring);
  cursor: none;
}
.menu-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: scale(1.1) rotate(90deg);
}
@media (hover:none) { .menu-btn { cursor: pointer; } }

/* Food art placeholders (CSS art) */
.food-art {
  width: 100px; height: 100px;
  border-radius: 50%;
  opacity: 0.4;
  animation: breathe 3s ease-in-out infinite;
}
@keyframes breathe { 0%,100%{transform:scale(1);} 50%{transform:scale(1.05);} }
.starter-art { background: radial-gradient(circle, #c9a96e 0%, #6b4200 100%); box-shadow: 0 0 40px rgba(201,169,110,0.3); }
.starter-art-2 { background: radial-gradient(circle, #c8a76a 0%, #4a3a10 100%); }
.sushi-art { background: radial-gradient(circle, #ff6b6b 0%, #1a1a2e 100%); }
.seafood-art { background: radial-gradient(circle, #4ecdc4 0%, #0a2a2a 100%); }
.wagyu-art { background: radial-gradient(circle, #8b0000 0%, #2d0808 100%); }
.signature-art { background: radial-gradient(circle, #c9a96e 0%, #1a1205 100%); }
.dessert-art { background: radial-gradient(circle, #7b2d8b 0%, #1a0816 100%); }
.drinks-art { background: radial-gradient(circle, #4fa3e8 0%, #0a1020 100%); }
.mocktail-art { background: radial-gradient(circle, #4caf50 0%, #0a1a0a 100%); }

/* Menu hidden state */
.menu-card.hidden {
  display: none;
}

.menu-cta { text-align: center; }
.menu-cta-text {
  font-size: 14px;
  color: rgba(232,228,221,0.5);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

/* ──────────────────────────────────────
   RESERVATION SECTION
────────────────────────────────────── */
.reservations {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.reservations-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--deep-black) 50%, var(--black) 100%);
}
.reservations-glow {
  position: absolute;
  width: 800px; height: 800px;
  top: 50%; right: -200px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(139,26,42,0.08), transparent 70%);
  pointer-events: none;
}
.reservations-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
  position: relative;
}
.reservations-info { display: flex; flex-direction: column; gap: 24px; }
.reservations-text { font-size: 15px; color: rgba(232,228,221,0.65); line-height: 1.85; }
.reservations-highlights { display: flex; flex-direction: column; gap: 20px; }
.r-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: border-color 0.3s, background 0.3s;
}
.r-highlight:hover {
  border-color: rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.03);
}
.r-icon { color: var(--gold); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.r-highlight strong { display: block; font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.r-highlight p { font-size: 12px; color: rgba(232,228,221,0.5); }

/* Reservation Form */
.reservation-form { padding: clamp(28px, 5vw, 48px); }
.form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 28px;
}
.res-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: 1/-1; }
.form-group label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--beige);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--white);
  font-size: 14px;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,169,110,0.5);
  background: rgba(201,169,110,0.04);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(232,228,221,0.3); }
.form-group textarea { resize: vertical; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.3); }

/* Occasion Pills */
.occasion-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.occasion-pill { cursor: none; }
.occasion-pill input { display: none; }
.occasion-pill span {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  font-size: 12px;
  color: rgba(232,228,221,0.6);
  transition: all 0.3s;
  cursor: pointer;
}
.occasion-pill input:checked + span {
  background: rgba(201,169,110,0.15);
  border-color: rgba(201,169,110,0.5);
  color: var(--gold-light);
}
.occasion-pill span:hover { border-color: rgba(201,169,110,0.3); color: var(--beige); }

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 50px;
  color: #25D366;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: none;
}
.whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.2);
}
.whatsapp-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
@media (hover: none) { .whatsapp-btn { cursor: pointer; } }

/* Booking Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(5,5,7,0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  padding: 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--spring);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 20px;
  animation: rotateModal 3s linear infinite;
}
@keyframes rotateModal { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.modal-title { font-family: var(--font-display); font-size: 32px; font-weight: 300; margin-bottom: 16px; }
.modal-text { font-size: 14px; color: rgba(232,228,221,0.65); margin-bottom: 24px; line-height: 1.75; }
.modal-detail {
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--beige);
  margin-bottom: 28px;
  text-align: left;
  line-height: 2;
}

@media (max-width: 768px) {
  .reservations-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────
   EVENTS SECTION
────────────────────────────────────── */
.events {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--black) 0%, #0b0b0e 100%);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.event-card {
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.4s var(--spring), box-shadow 0.4s, border-color 0.3s;
  overflow: hidden;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.event-card:hover::before { transform: scaleX(1); }
.event-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,169,110,0.2);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.featured-event {
  border-color: rgba(201,169,110,0.2);
  background: rgba(201,169,110,0.04);
}
.event-badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--black);
  text-transform: uppercase;
}
.event-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.event-title { font-family: var(--font-display); font-size: 24px; font-weight: 400; margin-bottom: 12px; }
.event-desc { font-size: 13px; color: rgba(232,228,221,0.55); line-height: 1.7; margin-bottom: 20px; }
.event-capacity {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.event-link {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--beige);
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  display: inline-block;
}
.event-link:hover { color: var(--gold); border-color: var(--gold); }
.event-link span { transition: transform 0.3s; display: inline-block; }
.event-link:hover span { transform: translateX(4px); }

/* Event Form */
.event-form-wrap {
  padding: clamp(28px, 5vw, 48px);
  max-width: 900px;
  margin: 0 auto;
}
.event-form-header {
  text-align: center;
  margin-bottom: 32px;
}
.event-form-header h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 8px;
}
.event-form-header p { font-size: 14px; color: rgba(232,228,221,0.5); }

/* ──────────────────────────────────────
   GALLERY SECTION
────────────────────────────────────── */
.gallery {
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-large {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s;
  filter: brightness(0.8) saturate(0.9);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,10,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(5,5,7,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img-wrap { max-width: 90vw; max-height: 85vh; text-align: center; }
.lightbox-img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 8px; }
.lightbox-caption { font-family: var(--font-display); font-size: 18px; color: var(--beige); margin-top: 16px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(201,169,110,0.2);
  transform: scale(1.1);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-large { grid-row: span 1; }
  .gallery-wide { grid-column: span 1; aspect-ratio: 1; }
}

/* ──────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────── */
.testimonials {
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  scroll-snap-align: start;
  min-width: 320px;
  padding: 32px;
  flex-shrink: 0;
  transition: transform 0.4s var(--spring), border-color 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,169,110,0.2);
}
.testimonial-stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 16px; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: rgba(232,228,221,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--crimson));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 500; color: var(--white); }
.testimonial-author span { font-size: 12px; color: rgba(232,228,221,0.4); }

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.t-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  font-size: 22px;
  color: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: none;
}
.t-nav-btn:hover {
  border-color: rgba(201,169,110,0.4);
  color: var(--gold);
  background: rgba(201,169,110,0.08);
}
@media (hover: none) { .t-nav-btn { cursor: pointer; } }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s;
  cursor: pointer;
}
.t-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* ──────────────────────────────────────
   INSTAGRAM SECTION
────────────────────────────────────── */
.instagram-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--black) 0%, #0b0b0e 100%);
}
.ig-icon { width: 18px; height: 18px; flex-shrink: 0; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: clamp(32px, 5vw, 56px);
}
.ig-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  display: block;
}
.ig-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.3s;
  filter: brightness(0.75) saturate(0.85);
}
.ig-item:hover .ig-img {
  transform: scale(1.06);
  filter: brightness(0.6) saturate(0.7);
}
.ig-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(8,8,10,0.4);
}
.ig-item:hover .ig-overlay { opacity: 1; }
@media (max-width: 768px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ──────────────────────────────────────
   CONTACT / LOCATION SECTION
────────────────────────────────────── */
.contact {
  padding: var(--section-pad) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.contact-card { padding: clamp(28px, 4vw, 48px); }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 28px;
  color: var(--white);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--glass-border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-icon { font-size: 18px; flex-shrink: 0; }
.contact-detail strong { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 14px; color: rgba(232,228,221,0.65); }
.contact-link { transition: color 0.3s; }
.contact-link:hover { color: var(--gold); }
.contact-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--soft-white);
  font-size: 13px;
  transition: all 0.3s;
}
.call-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

/* Map */
.map-wrap { display: flex; flex-direction: column; gap: 20px; }
.map-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.map-container iframe { display: block; filter: grayscale(90%) invert(92%) contrast(85%); }
.map-pin-label {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(8,8,10,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 12px;
  color: var(--beige);
  white-space: nowrap;
}
.map-pin-icon { color: var(--gold); }
.btn-map { display: inline-flex; align-self: flex-start; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────
   FOOTER
────────────────────────────────────── */
.footer {
  background: var(--deep-black);
  border-top: 1px solid var(--glass-border);
  padding: clamp(60px, 8vw, 100px) 0 0;
  position: relative;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  width: 600px; height: 400px;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(201,169,110,0.04), transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: clamp(32px, 5vw, 60px);
  margin-bottom: clamp(48px, 7vw, 80px);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-tagline { font-size: 14px; color: rgba(232,228,221,0.45); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(232,228,221,0.5);
  transition: all 0.3s;
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.08);
  transform: translateY(-2px);
}
.footer-links-col h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 14px;
  color: rgba(232,228,221,0.45);
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}
.footer-links-col a:hover { color: var(--white); transform: translateX(4px); }
.footer-newsletter h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-newsletter p { font-size: 13px; color: rgba(232,228,221,0.45); margin-bottom: 20px; line-height: 1.7; }
.newsletter-input-wrap {
  display: flex;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color 0.3s;
  margin-bottom: 16px;
}
.newsletter-input-wrap:focus-within { border-color: rgba(201,169,110,0.4); }
.newsletter-input-wrap input {
  flex: 1;
  padding: 12px 18px;
  font-size: 13px;
  background: transparent;
  color: var(--white);
}
.newsletter-input-wrap input::placeholder { color: rgba(232,228,221,0.3); }
.newsletter-input-wrap button {
  padding: 12px 18px;
  background: var(--gold);
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s;
  cursor: none;
}
.newsletter-input-wrap button:hover { background: var(--gold-light); }
@media (hover: none) { .newsletter-input-wrap button { cursor: pointer; } }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 12px; color: rgba(232,228,221,0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: rgba(232,228,221,0.3); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--beige); }

@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

/* ──────────────────────────────────────
   SCROLLBAR
────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--deep-black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ──────────────────────────────────────
   SELECTION
────────────────────────────────────── */
::selection { background: rgba(201,169,110,0.25); color: var(--white); }

/* ──────────────────────────────────────
   RESPONSIVE FINE-TUNING
────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .about-pillars { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: repeat(5, 280px); }
  .contact-actions { flex-direction: column; }
}
@media (max-width: 480px) {
  .section-title { font-size: 32px; }
  .hero-title { font-size: 40px; }
  .modal { padding: 28px 20px; }
  .menu-tabs { gap: 6px; }
  .menu-tab { padding: 8px 14px; font-size: 11px; }
}
