/* =============================================
   VAHAP USTA ET RESTAURANT - Premium Steakhouse
   Cinematic Dark Theme | Gold & Fire Accents
   Antalya, Turkey
   ============================================= */

/* ===========================================
   1. CSS VARIABLES
   =========================================== */
:root {
  /* Backgrounds */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-elevated: #1a1a1a;
  --bg-card: #141414;

  /* Gold palette */
  --gold-primary: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #8a7230;

  /* Fire palette */
  --fire-warm: #d4451a;
  --fire-ember: #ff6b35;

  /* Text */
  --text-primary: #f5f0e8;
  --text-secondary: #b8b0a0;
  --text-muted: #6b6560;

  /* Borders & overlays */
  --border: #222;
  --overlay: rgba(0, 0, 0, 0.7);

  /* Platform colors */
  --google-green: #34A853;
  --tripadvisor-teal: #00aa6c;
  --whatsapp-green: #25d366;
  --facebook-blue: #1877f2;
  --youtube-red: #ff0000;
  --tiktok-dark: #010101;
  --linkedin-blue: #0a66c2;
  --twitter-dark: #14171a;
  --instagram-gradient: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);

  /* Layout */
  --max-width: 1280px;
  --section-pad: clamp(60px, 10vw, 120px);
  --container-pad: 24px;

  /* Transitions */
  --transition: cubic-bezier(0.25, 0.1, 0.25, 1.0);
  --transition-fast: 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.0);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.0);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-gold: 0 0 20px rgba(201, 168, 76, 0.15);
  --shadow-fire: 0 0 20px rgba(212, 69, 26, 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 8px 40px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

ul, ol {
  list-style: none;
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-light);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ===========================================
   3. TYPOGRAPHY
   =========================================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
}

p {
  color: var(--text-secondary);
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.accent-text {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.section-title {
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.12em;
  margin-bottom: 0.5em;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  color: var(--gold-primary);
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 2em;
  font-weight: 400;
}

.gold-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 1em auto 2em;
  border: none;
}

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

/* ===========================================
   4. LAYOUT
   =========================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  width: 100%;
}

section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* ===========================================
   5. BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #0a0a0a;
  border-color: var(--gold-primary);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.35);
  transform: translateY(-2px);
  color: #0a0a0a;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: #0a0a0a;
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.25);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-fire {
  background: linear-gradient(135deg, var(--fire-warm), var(--fire-ember));
  color: #fff;
  border-color: var(--fire-warm);
}

.btn-fire:hover {
  background: linear-gradient(135deg, var(--fire-ember), var(--fire-warm));
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.35);
  transform: translateY(-2px);
}

.btn-fire:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

/* ===========================================
   6. NAVIGATION
   =========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10002;
  padding: 18px 0;
  transition: all var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10001;
}

.navbar-logo img {
  height: 58px;
  width: auto;
  transition: height var(--transition-smooth);
}

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

.navbar-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-primary);
  transition: width var(--transition-smooth);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--gold-primary);
}

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

/* Language selector */
.lang-selector {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-selector-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lang-selector-btn:hover {
  color: var(--gold-primary);
  border-color: var(--gold-dark);
}

.lang-selector-btn svg {
  width: 14px;
  height: 14px;
}

.lang-selector-btn .flag-icon {
  width: 18px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
  z-index: 1002;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.lang-dropdown a:hover {
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-primary);
}

.lang-dropdown a.active {
  color: var(--gold-primary);
  background: rgba(201, 168, 76, 0.05);
}

.lang-dropdown .flag-icon {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
}

/* Mobile language selector — shown between logo and hamburger on mobile */
.mobile-lang-selector {
  display: none;
  align-items: center;
  z-index: 1001;
}

.mobile-lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 14px;
  background: rgba(10, 10, 10, 0.65);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mobile-lang-trigger:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(10, 10, 10, 0.8);
}

.mobile-lang-trigger .lang-flag {
  font-size: 1.25rem;
  line-height: 1;
}

.mobile-lang-globe {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.mobile-lang-arrow {
  width: 12px;
  height: 12px;
  opacity: 0.6;
  flex-shrink: 0;
}

.mobile-lang-trigger svg:not(.mobile-lang-globe):not(.mobile-lang-arrow) {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.mobile-lang-selector .lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  right: auto;
}

/* Hamburger menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 60px;
  cursor: pointer;
  z-index: 10001;
  position: relative;
  background: none;
  border: none;
  gap: 0;
}

.hamburger-line {
  display: block;
  width: 30px;
  height: 2.5px;
  background: var(--text-primary);
  transition: transform 0.35s var(--transition), opacity 0.35s var(--transition), background 0.35s var(--transition);
  position: absolute;
  opacity: 1;
  transform-origin: center;
}

.hamburger-line:nth-child(1) {
  transform: translateY(-10px);
}

.hamburger-line:nth-child(2) {
  transform: translateY(0);
}

.hamburger-line:nth-child(3) {
  transform: translateY(10px);
}

.hamburger-text {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-primary);
  position: absolute;
  bottom: 2px;
  font-family: var(--ff-body);
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s var(--transition), visibility 0.2s var(--transition);
}

.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
  background: var(--gold-primary);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateY(0) scaleX(0);
}

.menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
  background: var(--gold-primary);
}

.menu-toggle.active .hamburger-text {
  opacity: 0;
  visibility: hidden;
}

/* Body lock when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

body.menu-open .navbar {
  background: rgba(10, 10, 10, 0.98);
}

body.menu-open .floating-actions {
  opacity: 0;
  pointer-events: none;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--transition);
  overflow-y: auto;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 80px 24px 100px;
  gap: 8px;
}

.mobile-menu-header {
  margin-bottom: 24px;
}

.mobile-menu-header img {
  max-height: 60px;
  width: auto;
}

.mobile-menu-logo-text {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.mobile-menu-logo-text span {
  font-weight: 400;
  color: var(--text-primary);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 320px;
}

.mobile-nav-link {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 16px 0;
  color: var(--text-primary);
  text-align: center;
  width: 100%;
  border-bottom: 1px solid rgba(34, 34, 34, 0.3);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--gold-primary);
}

.mobile-menu-lang {
  margin-top: 20px;
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  width: 100%;
  max-width: 280px;
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #0a0a0a;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
  justify-content: center;
}

.mobile-menu-reserve {
  display: block;
  padding: 12px 28px;
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease;
}

.mobile-menu-reserve:hover {
  background: var(--gold-primary);
  color: #0a0a0a;
}

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

.hero-video,
.hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video video {
  display: block;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    rgba(0, 0, 0, 0.35) 70%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--container-pad);
}

.hero-content h1 {
  margin-bottom: 0.3em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.hero-content .accent-text {
  margin-bottom: 1.5em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2em;
}

.hero-btn-gallery-mobile {
  display: none;
}

/* Hero Rating Badges (Glassmorphism) */
.hero-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5em;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 160px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.hero-badge-platform {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-badge-name {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-badge-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge-score {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.hero-badge-stars {
  display: flex;
  gap: 2px;
}

.hero-badge-count {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-badge--google {
  border-color: rgba(66, 133, 244, 0.3);
}

.hero-badge--tripadvisor {
  border-color: rgba(0, 170, 108, 0.3);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-primary);
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================================
   8. RATING BADGES
   =========================================== */
.rating-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 1.5em;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.rating-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.rating-badge-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rating-badge-icon img,
.rating-badge-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rating-badge-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rating-badge-score {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.rating-badge-stars {
  display: flex;
  gap: 2px;
  font-size: 0.75rem;
}

.rating-badge.google .rating-badge-stars {
  color: var(--google-green);
}

.rating-badge.tripadvisor .rating-badge-stars {
  color: var(--tripadvisor-teal);
}

.rating-badge-count {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1;
}

.rating-badge.google {
  border-color: rgba(52, 168, 83, 0.15);
}

.rating-badge.google:hover {
  border-color: rgba(52, 168, 83, 0.3);
  box-shadow: 0 8px 24px rgba(52, 168, 83, 0.1);
}

.rating-badge.tripadvisor {
  border-color: rgba(0, 170, 108, 0.15);
}

.rating-badge.tripadvisor:hover {
  border-color: rgba(0, 170, 108, 0.3);
  box-shadow: 0 8px 24px rgba(0, 170, 108, 0.1);
}

/* ===========================================
   9. ABOUT SECTION
   =========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 2px solid var(--gold-primary);
  border-radius: 4px;
  z-index: 0;
  opacity: 0.4;
  transition: all var(--transition-smooth);
}

.about-image:hover::before {
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  opacity: 0.7;
}

.about-text h2 {
  margin-bottom: 0.3em;
}

.about-text .accent-text {
  margin-bottom: 1.5em;
}

.about-text p {
  margin-bottom: 1.2em;
}

/* ===========================================
   10. GALLERY SECTION
   =========================================== */
.gallery-section {
  background: var(--bg-primary);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2.5em;
  flex-wrap: wrap;
}

.gallery-filter-btn,
.gallery-filter {
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gallery-filter-btn:hover,
.gallery-filter:hover {
  color: var(--gold-primary);
  border-color: var(--gold-dark);
}

.gallery-filter-btn.active,
.gallery-filter.active {
  color: #0a0a0a;
  background: var(--gold-primary);
  border-color: var(--gold-primary);
}

.gallery-filter svg {
  width: 16px;
  height: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: var(--bg-card);
}

.gallery-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: 1;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

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

.gallery-item-overlay svg {
  width: 32px;
  height: 32px;
  color: var(--text-primary);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

/* Video play button */
.gallery-item.video .gallery-item-overlay::before,
.gallery-item[data-type="video"] .gallery-item-overlay::before {
  content: '';
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.gallery-item.video .gallery-item-overlay svg,
.gallery-item[data-type="video"] .gallery-item-overlay svg {
  position: relative;
  z-index: 1;
  color: #0a0a0a;
}

.gallery-play-btn {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.gallery-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}

.gallery-zoom-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, background 0.3s ease;
}

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

.gallery-item-label {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.gallery-item-overlay {
  flex-direction: column;
  gap: 8px;
}

.gallery-item-wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-item-tall {
  grid-row: span 2;
  aspect-ratio: 1 / 2;
}

/* ===========================================
   11. HIGHLIGHTS SECTION
   =========================================== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-smooth);
}

.highlight-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
  stroke: #fff;
  fill: none;
}

.highlight-card h3 {
  color: var(--gold-primary);
  margin-bottom: 0.6em;
  font-size: 1.15rem;
}

.highlight-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===========================================
   12. MENU SECTION
   =========================================== */
.menu-section {
  background: var(--bg-secondary);
}

.menu-tabs {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5em;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

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

.menu-tab.active {
  color: #0a0a0a;
  background: var(--gold-primary);
  border-color: var(--gold-primary);
}

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

.menu-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.menu-item:hover {
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.menu-item-image {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.05);
}

.menu-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
}

.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.menu-item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-primary);
  white-space: nowrap;
  flex-shrink: 0;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
  letter-spacing: 0.02em;
}

.menu-item-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: auto;
}

.popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--fire-warm), var(--fire-ember));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 3px;
}

.popular-badge svg {
  width: 12px;
  height: 12px;
}

/* ===========================================
   13. REVIEWS SECTION
   =========================================== */
.reviews-section {
  background: var(--bg-primary);
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 3em;
  flex-wrap: wrap;
}

.reviews-summary-rating {
  text-align: center;
}

.reviews-summary-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.reviews-summary-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.reviews-summary-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews-summary-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: all var(--transition-smooth);
}

.review-card:hover {
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold-primary);
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.review-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-primary);
}

.review-card-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-card-stars {
  display: flex;
  gap: 2px;
  color: var(--gold-primary);
  font-size: 0.85rem;
}

.review-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.review-card-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-card-source.google {
  background: rgba(52, 168, 83, 0.1);
  color: var(--google-green);
  border: 1px solid rgba(52, 168, 83, 0.2);
}

.review-card-source.tripadvisor {
  background: rgba(0, 170, 108, 0.1);
  color: var(--tripadvisor-teal);
  border: 1px solid rgba(0, 170, 108, 0.2);
}

.review-card-source svg {
  width: 14px;
  height: 14px;
}

/* ===========================================
   14. RESERVATION SECTION
   =========================================== */
.reservation {
  background: var(--bg-secondary);
  position: relative;
}

.reservation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

/* Reservation notice banner */
.reservation-notice {
  max-width: 760px;
  margin: 0 auto 2.5em;
  padding: 18px 24px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  text-align: center;
}

.reservation-notice strong {
  color: var(--gold-primary);
}

/* Form wrapper */
.reservation-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

/* Form grid — 2 columns desktop, 1 on mobile */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
  margin-bottom: 28px;
}

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

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

.form-group label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group label svg {
  width: 15px;
  height: 15px;
  color: var(--gold-primary);
  flex-shrink: 0;
  opacity: 0.7;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  background: rgba(10, 10, 10, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6560' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* Date and time inputs dark theme */
.form-group input[type="date"],
.form-group input[type="time"] {
  color-scheme: dark;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  cursor: pointer;
}

/* Reservation type cards — side-by-side selection */
.reservation-type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.reservation-type-card {
  position: relative;
  cursor: pointer;
  background: var(--bg-primary);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.reservation-type-card:hover {
  border-color: var(--gold-dark);
  background: rgba(26, 26, 26, 0.8);
}

.reservation-type-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.reservation-type-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.reservation-type-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
}

.reservation-type-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold-primary);
}

.reservation-type-icon--vip {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border-color: var(--gold-primary);
}

.reservation-type-icon--vip svg {
  color: var(--gold-light);
}

.reservation-type-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.reservation-type-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.reservation-type-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.reservation-type-check svg {
  width: 12px;
  height: 12px;
  color: #0a0a0a;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

/* Selected state (added by JS) */
.reservation-type-card.selected {
  border-color: var(--gold-primary);
  background: rgba(201, 168, 76, 0.05);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.12);
}

.reservation-type-card.selected .reservation-type-icon {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border-color: var(--gold-primary);
}

.reservation-type-card.selected .reservation-type-icon svg {
  color: #0a0a0a;
}

.reservation-type-card.selected .reservation-type-check {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
}

.reservation-type-card.selected .reservation-type-check svg {
  opacity: 1;
}

/* Legacy radio group support */
.form-radio-group {
  display: flex;
  gap: 16px;
}

.reservation-type-card label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  background: var(--bg-primary);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-align: center;
  text-transform: none;
}

.reservation-type-card label:hover {
  border-color: var(--gold-dark);
}

.reservation-type-card input[type="radio"]:checked + label {
  border-color: var(--gold-primary);
  background: rgba(201, 168, 76, 0.05);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.12);
}

.reservation-type-card label svg {
  width: 28px;
  height: 28px;
  color: var(--gold-primary);
}

.reservation-type-card label .type-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.reservation-type-card label .type-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Submit area */
.form-submit {
  text-align: center;
  margin-top: 8px;
}

.form-submit .btn {
  min-width: 220px;
}

/* Hotel Transfer Toggle */
.transfer-checkbox-label {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: none;
  user-select: none;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.transfer-checkbox-label:hover {
  border-color: var(--gold-dark);
  background: rgba(26, 26, 26, 0.8);
}

.transfer-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.transfer-checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  position: relative;
}

.transfer-checkbox-custom::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--gold-primary);
  border-radius: 2px;
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition-fast);
}

.transfer-checkbox-label input[type="checkbox"]:checked ~ .transfer-checkbox-custom {
  border-color: var(--gold-primary);
  background: rgba(201, 168, 76, 0.1);
}

.transfer-checkbox-label input[type="checkbox"]:checked ~ .transfer-checkbox-custom::after {
  opacity: 1;
  transform: scale(1);
}

.transfer-checkbox-label svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
  opacity: 0.7;
  flex-shrink: 0;
}

.transfer-fields {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

.transfer-fields.active {
  max-height: 300px;
  opacity: 1;
}

.transfer-fields-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 16px;
}

@media (max-width: 600px) {
  .transfer-fields-inner {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   15. CONTACT SECTION
   =========================================== */
.contact-section {
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Contact info card */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition-fast);
}

.contact-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info-item:first-child {
  padding-top: 0;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border: 1px solid rgba(201, 168, 76, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-smooth);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
}

.contact-info-item:hover .contact-info-icon {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border-color: var(--gold-primary);
}

.contact-info-item:hover .contact-info-icon svg {
  color: #0a0a0a;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info-text .label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-info-text .value {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.contact-info-text .value a {
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

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

.contact-info-content h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.contact-info-content a {
  color: var(--text-secondary);
}

.contact-info-content a:hover {
  color: var(--gold-primary);
}

/* Map */
.contact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  aspect-ratio: 16 / 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.8) contrast(1.1) saturate(0);
}

/* Working hours */
.working-hours {
  margin-top: 32px;
}

.working-hours h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--gold-primary);
}

.working-hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.working-hours-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(34, 34, 34, 0.5);
  font-size: 0.9rem;
}

.working-hours-item .day {
  color: var(--text-secondary);
}

.working-hours-item .time {
  color: var(--text-primary);
  font-weight: 500;
}

/* ===========================================
   16. FAQ SECTION
   =========================================== */
.faq-section {
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--gold-dark);
}

.faq-item.active {
  border-color: var(--gold-primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: var(--bg-elevated);
}

.faq-question h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
}

.faq-question-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s var(--transition);
}

.faq-question-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
}

.faq-item.active .faq-question-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition);
}

.faq-answer-content {
  padding: 0 24px 24px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ===========================================
   17. FOOTER
   =========================================== */
.footer {
  background: #0d0d0d;
  padding: 72px 0 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

/* Brand column */
.footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  max-height: 55px;
  width: auto;
}

.footer-logo img {
  max-height: 55px;
  width: auto;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

/* Footer headings with gold accent */
.footer-heading,
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after,
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-dark);
  border-radius: 1px;
}

/* Quick links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  padding: 3px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width var(--transition-fast);
}

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

.footer-links a:hover::before {
  width: 12px;
}

/* Contact info */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--gold-primary);
}

/* Social media icons */
.footer-social-links,
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.footer-social-icon,
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.footer-social-icon svg,
.footer-social a svg {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-social-icon:hover,
.footer-social a:hover {
  transform: translateY(-3px);
  border-color: transparent;
}

.footer-social-icon:hover svg,
.footer-social a:hover svg {
  color: #fff;
}

.footer-social-icon--instagram:hover,
.footer-social a.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.footer-social-icon--facebook:hover,
.footer-social a.facebook:hover {
  background: var(--facebook-blue);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.footer-social-icon--youtube:hover,
.footer-social a.youtube:hover {
  background: var(--youtube-red);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.footer-social-icon--tiktok:hover,
.footer-social a.tiktok:hover {
  background: var(--tiktok-dark);
  border-color: #25f4ee;
  box-shadow: 0 4px 15px rgba(37, 244, 238, 0.2);
}

.footer-social-icon--linkedin:hover,
.footer-social a.linkedin:hover {
  background: var(--linkedin-blue);
  box-shadow: 0 4px 15px rgba(10, 102, 194, 0.3);
}

.footer-social-icon--twitter:hover,
.footer-social a.twitter:hover {
  background: var(--twitter-dark);
  border-color: #555;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Copyright bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

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

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

.footer-bottom > span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-credit a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
}

.footer-credit a:hover {
  color: var(--gold-primary);
}

/* Mobilde PRADS kredisi copyright'ın ÜSTÜNDE görünsün */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-credit {
    order: -1;
  }
}

/* ===========================================
   18. FLOATING ACTIONS
   =========================================== */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 50%;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  background: rgba(15, 15, 25, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-decoration: none;
}

.floating-btn svg {
  width: 22px;
  height: 22px;
  color: var(--gold-primary);
  position: relative;
  z-index: 1;
  transition: color var(--transition-fast);
}

.floating-btn:hover {
  transform: scale(1.12);
  border-color: var(--gold-primary);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.25);
  background: rgba(15, 15, 25, 0.95);
}

.floating-btn:hover svg {
  color: #fff;
}

/* WhatsApp - green accent */
.floating-btn.whatsapp svg,
.floating-btn--whatsapp svg {
  color: #25d366;
}
.floating-btn.whatsapp:hover,
.floating-btn--whatsapp:hover {
  border-color: #25d366;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.2);
}

/* Call - gold accent */
.floating-btn.call svg,
.floating-btn--call svg {
  color: var(--gold-primary);
}

/* Reserve - warm accent */
.floating-btn.reserve svg,
.floating-btn--reserve svg {
  color: #ff6b35;
}
.floating-btn.reserve:hover,
.floating-btn--reserve:hover {
  border-color: #ff6b35;
  box-shadow: 0 4px 24px rgba(255, 107, 53, 0.2);
}

/* Directions - gold accent */
.floating-btn.directions svg,
.floating-btn--directions svg {
  color: var(--gold-primary);
}


/* Floating button labels (desktop hover) */
.floating-btn-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  padding: 6px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
}

.floating-btn:hover .floating-btn-label {
  opacity: 1;
  visibility: visible;
}

/* ===========================================
   19. LIGHTBOX
   =========================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox.active,
.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.lightbox-nav,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10001;
  color: #fff;
}

.lightbox-nav:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav svg,
.lightbox-prev svg,
.lightbox-next svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: var(--text-muted);
  z-index: 10001;
}

/* ===========================================
   20. ANIMATIONS
   =========================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

.fade-in {
  opacity: 0;
  transition: opacity 0.7s var(--transition);
}

.fade-in.visible {
  opacity: 1;
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for grid children */
.stagger-children > .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger-children > .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > .fade-up:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > .fade-up:nth-child(4) { transition-delay: 0.2s; }
.stagger-children > .fade-up:nth-child(5) { transition-delay: 0.25s; }
.stagger-children > .fade-up:nth-child(6) { transition-delay: 0.3s; }
.stagger-children > .fade-up:nth-child(7) { transition-delay: 0.35s; }
.stagger-children > .fade-up:nth-child(8) { transition-delay: 0.4s; }
.stagger-children > .fade-up:nth-child(9) { transition-delay: 0.45s; }
.stagger-children > .fade-up:nth-child(10) { transition-delay: 0.5s; }
.stagger-children > .fade-up:nth-child(11) { transition-delay: 0.55s; }
.stagger-children > .fade-up:nth-child(12) { transition-delay: 0.6s; }

/* Pulse animation for floating buttons */
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(201, 168, 76, 0.4); }
}

/* Shimmer effect */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer {
  background: linear-gradient(
    90deg,
    var(--gold-dark) 0%,
    var(--gold-light) 50%,
    var(--gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

/* ===========================================
   21. MOBILE CTA BAR
   =========================================== */
.mobile-cta-bar {
  display: none;
}

/* ===========================================
   22. CUSTOM SCROLLBAR
   =========================================== */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--bg-primary);
}

/* ===========================================
   23. 404 PAGE
   =========================================== */
.page-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: var(--container-pad);
}

.page-404 h1 {
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.2em;
  opacity: 0.3;
}

.page-404 h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 0.5em;
}

.page-404 p {
  max-width: 500px;
  margin-bottom: 2em;
  color: var(--text-muted);
}

/* ===========================================
   24. RTL SUPPORT
   =========================================== */
html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .navbar-links {
  flex-direction: row-reverse;
}

html[dir="rtl"] .footer-links a:hover {
  padding-left: 0;
  padding-right: 6px;
}

html[dir="rtl"] .floating-actions {
  right: auto;
  left: 20px;
}

html[dir="rtl"] .floating-btn-label {
  right: auto;
  left: calc(100% + 12px);
}

html[dir="rtl"] .contact-info-item {
  flex-direction: row-reverse;
}

html[dir="rtl"] .review-card-header {
  flex-direction: row-reverse;
}

html[dir="rtl"] .menu-item {
  flex-direction: row-reverse;
}

html[dir="rtl"] .faq-question {
  text-align: right;
}

html[dir="rtl"] .form-group select {
  background-position: left 14px center;
  padding-right: 16px;
  padding-left: 40px;
}

html[dir="rtl"] .popular-badge {
  right: auto;
  left: 12px;
}

html[dir="rtl"] .about-image::before {
  left: -16px;
  right: 16px;
}

html[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}

/* ===========================================
   25. SELECTION COLORS
   =========================================== */
::selection {
  background: rgba(201, 168, 76, 0.25);
  color: var(--text-primary);
}

::-moz-selection {
  background: rgba(201, 168, 76, 0.25);
  color: var(--text-primary);
}

/* ===========================================
   26. FOCUS STYLES (ACCESSIBILITY)
   =========================================== */
:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
}

/* ===========================================
   27. PRINT STYLES
   =========================================== */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .navbar,
  .floating-actions,
  .hero-video,
  .hero-overlay,
  .lightbox,
  .mobile-cta-bar,
  .hero-scroll-indicator {
    display: none !important;
  }

  .hero {
    min-height: auto;
    height: auto;
    padding: 40px 0;
  }

  .container {
    max-width: 100%;
  }

  h1, h2, h3, h4 {
    page-break-after: avoid;
  }

  img {
    max-width: 100%;
    page-break-inside: avoid;
  }

  a {
    text-decoration: underline;
  }

  .btn {
    border: 1px solid #000;
    padding: 8px 16px;
  }
}

/* ===========================================
   28. TABLET RESPONSIVE (max-width: 1024px)
   =========================================== */
@media (max-width: 1024px) {
  :root {
    --container-pad: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }

  .footer-heading::after,
  .footer h4::after {
    left: 0;
    transform: none;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .floating-actions {
    right: 14px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .floating-btn svg {
    width: 20px;
    height: 20px;
  }

  .floating-btn-label {
    display: none;
  }
}

/* ===========================================
   29. MOBILE RESPONSIVE (max-width: 768px)
   =========================================== */
@media (max-width: 768px) {
  :root {
    --container-pad: 16px;
    --section-pad: clamp(40px, 8vw, 80px);
  }

  /* Mobile hamburger toggle visible */
  .menu-toggle {
    display: flex;
  }

  /* Mobile language selector between logo and hamburger */
  .mobile-lang-selector {
    display: flex;
    position: relative;
  }

  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Hide desktop nav links on mobile - real menu is #mobile-menu */
  .navbar-links {
    display: none !important;
  }

  /* Mobile menu logo sizing */
  .mobile-menu-logo {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-menu-logo img {
    height: 48px;
    width: auto;
  }

  /* Mobile CTA bar */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 998;
    padding: 8px 16px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(34, 34, 34, 0.5);
    justify-content: center;
    align-items: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-smooth);
  }

  .mobile-cta-bar.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-cta-bar .btn {
    padding: 10px 20px;
    font-size: 0.78rem;
    flex: 1;
    max-width: 180px;
  }

  .mobile-cta-bar .btn-gallery {
    flex: 1.3;
    max-width: 220px;
  }

  .mobile-cta-bar .lang-selector-btn {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  /* Hero section mobile */
  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  /* Video stays visible on mobile */
  .hero-video,
  .hero-video video {
    display: block !important;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* Hero badges mobile */
  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-badge {
    min-width: 140px;
    padding: 10px 16px;
  }

  .hero-badge-score {
    font-size: 1.2rem;
  }

  /* Mobile Gallery CTA — visible on mobile */
  .hero-btn-gallery-mobile {
    display: inline-flex !important;
  }

  /* Rating badges mobile */
  .rating-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .rating-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* About section mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Gallery mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .gallery-item-tall {
    grid-row: span 1;
    aspect-ratio: 1 / 1;
  }

  .gallery-filters {
    gap: 6px;
    padding: 0 4px;
  }

  .gallery-filter-btn {
    padding: 6px 14px;
    font-size: 0.75rem;
  }

  /* Highlights mobile */
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .highlight-card {
    padding: 28px 24px;
  }

  /* Menu mobile */
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    justify-content: flex-start;
    padding: 0 4px 4px;
    margin-bottom: 2em;
  }

  .menu-tab {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  .menu-item {
    padding: 16px;
    gap: 12px;
  }

  .menu-item-image {
    width: 80px;
    height: 80px;
  }

  .menu-item-name {
    font-size: 0.95rem;
  }

  .menu-item-price {
    font-size: 1.15rem;
  }

  /* Reviews mobile */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-summary {
    flex-direction: column;
    gap: 24px;
  }

  .reviews-summary-badges {
    justify-content: center;
  }

  .review-card {
    padding: 20px;
  }

  /* Reservation mobile */
  .reservation-form {
    padding: 28px 20px;
    border-radius: 12px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .reservation-type-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reservation-type-card {
    flex-direction: row;
    text-align: left;
    padding: 18px 16px;
    gap: 14px;
  }

  .reservation-type-card-inner {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .form-radio-group {
    flex-direction: column;
  }

  .reservation-type-card label {
    flex-direction: row;
    text-align: left;
    gap: 14px;
  }

  /* Contact mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-map {
    aspect-ratio: 16 / 9;
  }

  /* FAQ mobile */
  .faq-question {
    padding: 16px 18px;
  }

  .faq-question h4 {
    font-size: 0.92rem;
  }

  .faq-answer-content {
    padding: 0 18px 18px;
    font-size: 0.88rem;
  }

  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-col--brand,
  .footer-brand {
    align-items: center;
  }

  .footer-tagline {
    text-align: center;
  }

  .footer-heading::after,
  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social-links,
  .footer-social {
    justify-content: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-links a::before {
    display: none;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  /* Floating actions mobile - horizontal at bottom */
  .floating-actions {
    position: fixed;
    right: auto;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    flex-direction: row;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(34, 34, 34, 0.6);
    border-radius: 50px;
  }

  .floating-btn {
    width: 44px;
    height: 44px;
  }

  .floating-btn svg {
    width: 19px;
    height: 19px;
  }

  .floating-btn-label {
    display: none;
  }

  /* Lightbox mobile */
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .lightbox-content img,
  .lightbox-content video {
    max-width: 95vw;
    max-height: 80vh;
  }
}

/* ===========================================
   30. SMALL MOBILE (max-width: 480px)
   =========================================== */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero-content .accent-text {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .rating-badge {
    padding: 10px 16px;
    gap: 10px;
  }

  .rating-badge-score {
    font-size: 1.2rem;
  }

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

  .floating-actions {
    bottom: 12px;
    gap: 8px;
    padding: 6px 14px;
  }

  .floating-btn {
    width: 40px;
    height: 40px;
  }

  .floating-btn svg {
    width: 17px;
    height: 17px;
  }

  .menu-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-item-image {
    width: 100%;
    height: 160px;
    border-radius: 6px;
  }

  .highlight-card {
    padding: 24px 20px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.82rem;
  }

  .btn-lg {
    padding: 14px 32px;
    font-size: 0.9rem;
  }
}

/* ===========================================
   31. LANDSCAPE MOBILE
   =========================================== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

}

/* ===========================================
   32. HIGH RESOLUTION / RETINA
   =========================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .gold-line {
    height: 1px;
  }
}

/* ===========================================
   33. REDUCED MOTION
   =========================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .fade-in {
    opacity: 1;
  }

  .scale-in {
    opacity: 1;
    transform: none;
  }
}

/* ===========================================
   34. HOVER MEDIA QUERY (touch vs pointer)
   =========================================== */
@media (hover: none) {
  .gallery-item::after {
    opacity: 0;
  }

  .gallery-item .gallery-item-overlay {
    opacity: 0;
  }

  .floating-btn-label {
    display: none;
  }

  .highlight-card:hover {
    transform: none;
  }

  .menu-item:hover {
    transform: none;
  }

  .review-card:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }
}

/* ===========================================
   35. DARK MODE (explicit, for system pref)
   =========================================== */
@media (prefers-color-scheme: light) {
  /* Site is dark by default, no changes needed.
     This block exists for future light mode support. */
}

/* ===========================================
   36. UTILITY CLASSES
   =========================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5em; }
.mt-2 { margin-top: 1em; }
.mt-3 { margin-top: 1.5em; }
.mt-4 { margin-top: 2em; }

.mb-1 { margin-bottom: 0.5em; }
.mb-2 { margin-bottom: 1em; }
.mb-3 { margin-bottom: 1.5em; }
.mb-4 { margin-bottom: 2em; }

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

.flex { display: flex; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.w-full { width: 100%; }

/* ===========================================
   GALLERY VIEW ALL BUTTON
   =========================================== */
.btn-view-all:hover {
  background: rgba(201,168,76,0.12) !important;
  border-color: #c9a84c !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.15);
}

/* ===========================================
   GALLERY STANDALONE PAGE
   =========================================== */
.gallery-page {
  padding-top: 140px;
  min-height: 80vh;
  padding-bottom: 80px;
}
