/* ============================================
   LA CATRINA — Static Site Stylesheet
   Migrated from WordPress theme, audit fixes applied
   ============================================ */

:root {
  --black: #0b0b0b;
  --black-soft: #111111;
  --dark: #1a1a1a;
  --dark-card: #151515;
  --dark-elevated: #1e1e1e;
  --dark-border: rgba(255,255,255,0.06);
  --primary: #c2185b;
  --primary-glow: rgba(194,24,91,0.35);
  --accent: #e65100;
  --accent-warm: #ff7043;
  --gold: #d4a34a;
  --gold-dim: rgba(212,163,74,0.25);
  --teal: #26a69a;
  --purple: #7b1fa2;
  --cream: #fdf6ec;
  --white: #f5f0eb;
  --white-pure: #ffffff;
  --text: #f0e8e0;
  --text-muted: #b8aca0;
  --text-dim: #5c5550;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Cinzel Decorative', 'Playfair Display', serif;
  --font-body: 'Montserrat', 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-base: 0.4s var(--ease-smooth);
  --transition-slow: 0.7s var(--ease-out-expo);
  --shadow-soft: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 60px var(--primary-glow);
  --radius: 12px;
  --radius-lg: 24px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6, p { margin: 0; padding: 0; }

::selection {
  background: var(--primary);
  color: var(--white-pure);
}

/* --- AUDIT FIX: Skip to content (accessibility) --- */
/* --- Screen reader only (visually hidden) --- */
.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;
}

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 99999;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white-pure);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--white-pure);
  outline-offset: 2px;
}

/* --- AUDIT FIX: Focus styles (accessibility) --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-logo-img {
  height: clamp(60px, 12vw, 90px);
  width: auto;
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  animation: preloaderSlide 1s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}

.navbar.scrolled {
  background: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--dark-border), 0 8px 32px rgba(0,0,0,0.4);
  height: 64px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9001;
}



.nav-logo-img {
  height: 60px;
  width: auto;
  transition: transform var(--transition-fast), height var(--transition-base), border-color var(--transition-base);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--primary);
}

.navbar.scrolled .nav-logo-img {
  height: 52px;
  padding-bottom: 4px;
  border-bottom-color: transparent;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

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

.nav-links a {
  position: relative;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width var(--transition-base);
  border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 24px;
}

/* Nav social icons */
.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--primary);
  transition: color var(--transition-fast), transform var(--transition-fast);
  padding: 0 !important;
}

.nav-social::after { display: none !important; }

.nav-social svg {
  width: 20px;
  height: 20px;
}

.nav-social:hover {
  color: var(--white);
  transform: translateY(-2px);
}

/* Nav music button */
.nav-music {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.nav-music svg {
  width: 20px;
  height: 20px;
}

.nav-music .icon-music-on { display: none; }

.nav-music.playing .icon-music-on { display: block; }
.nav-music.playing .icon-music-off { display: none; }

.nav-music:hover,
.nav-music.playing {
  color: var(--white);
  transform: translateY(-2px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 9001;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-base);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

.nav-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) { opacity: 0; }

.nav-toggle.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 8998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.visible {
  opacity: 1;
}

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

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

.hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(11,11,11,0.5) 0%,
      rgba(11,11,11,0.55) 40%,
      rgba(11,11,11,0.65) 60%,
      rgba(11,11,11,0.8) 80%,
      rgba(11,11,11,1) 100%
    );
  z-index: 1;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 200px 60px rgba(0,0,0,0.7);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  width: 100%;
  max-width: 900px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white-pure);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroRevealTitle 1s var(--ease-out-expo) 1s forwards;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 4px 24px rgba(0,0,0,0.6);
}

.hero-title .accent {
  color: var(--primary);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  font-style: normal;
  color: var(--white);
  max-width: 540px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s var(--ease-out-expo) 1.3s forwards;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.7);
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s var(--ease-out-expo) 1.5s forwards;
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroRevealTitle {
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #a01048);
  color: var(--white-pure);
  box-shadow: 0 4px 24px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--primary-glow);
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}



/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 80px 0 120px;
  position: relative;
  background: var(--black-soft);
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/images/tloonas.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

.about::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 85%, var(--black) 100%);
  pointer-events: none;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark);
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}



.about-float-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--dark-border);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
  z-index: 2;
}

.about-float-card .big {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}

.about-float-card .small {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.about-copy .section-label { text-align: left; }

.about-copy .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-copy .lead {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white-pure);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-copy .body-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.9;
  opacity: 0.85;
}

/* ============================================
   FOOD GALLERY (Auto-scrolling)
   ============================================ */
.food-gallery {
  width: 100%;
  overflow: hidden;
  background: var(--black);
  padding: 60px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.food-gallery.food-gallery-single {
  overflow: hidden;
  background: transparent;
}

.food-gallery-single {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 10;
  background: transparent;
}

.food-gallery-single::before,
.food-gallery-single::after {
  display: none;
}

.food-gallery::before,
.food-gallery::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.food-gallery::before {
  left: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 100%);
}

.food-gallery::after {
  right: 0;
  background: linear-gradient(-90deg, var(--black) 0%, transparent 100%);
}

.gallery-row {
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  animation: galleryScroll 50s linear infinite;
  -webkit-animation: galleryScroll 50s linear infinite;
  width: max-content;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-slide {
  flex-shrink: 0;
  width: 320px;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.gallery-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  z-index: 1;
  pointer-events: none;
  transition: border-color var(--transition-fast);
}

.gallery-slide:hover::before {
  border-color: rgba(194,24,91,0.4);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-slide:hover img {
  transform: scale(1.08);
}

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

@media (max-width: 768px) {
  .food-gallery {
    padding: 40px 0;
    gap: 16px;
  }

  .food-gallery::before,
  .food-gallery::after {
    width: 60px;
  }

  .food-gallery-single {
    padding: 0;
    background: transparent;
  }

  .food-gallery-single::before,
  .food-gallery-single::after {
    display: none;
  }

  .gallery-slide {
    width: 260px;
    height: 180px;
  }

  .gallery-track {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .food-gallery {
    padding: 32px 0;
    gap: 12px;
  }

  .food-gallery::before,
  .food-gallery::after {
    width: 40px;
  }

  .food-gallery-single {
    padding: 0;
    background: transparent;
  }

  .food-gallery-single::before,
  .food-gallery-single::after {
    display: none;
  }

  .gallery-slide {
    width: 200px;
    height: 140px;
  }

  .gallery-track {
    gap: 12px;
    animation-duration: 40s;
  }
}

/* ============================================
   MENU
   ============================================ */
.menu-section {
  padding: 80px 0 120px;
  position: relative;
  background: var(--black);
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(194,24,91,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Menu/Bar Switcher */
.menu-bar-switcher {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.switcher-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 56px;
  background: transparent;
  border: 2px solid var(--dark-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
}

.switcher-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
}

.switcher-btn:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.switcher-btn.active {
  border-color: transparent;
  box-shadow: 0 8px 40px var(--primary-glow);
}

.switcher-btn.active::before {
  opacity: 1;
}

.switcher-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.4s var(--ease-smooth);
}

.switcher-btn:hover .switcher-title,
.switcher-btn.active .switcher-title {
  color: var(--white-pure);
}

/* Section Subtitle */
.section-subtitle {
  text-align: center;
  margin-bottom: 48px;
}

.subtitle-text {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 300;
  color: var(--primary);
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.subtitle-text::before,
.subtitle-text::after {
  content: '\2014';
  margin: 0 20px;
  color: var(--text-dim);
  opacity: 0.4;
}

/* Menu Content Panels */
.menu-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.menu-content.active {
  display: block;
  animation: menuContentIn 0.6s var(--ease-out-expo) forwards;
}

.menu-content.fade-out {
  animation: menuContentOut 0.3s var(--ease-smooth) forwards;
}

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

@keyframes menuContentOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}



/* Tabs */
.menu-tabs-wrapper {
  position: relative;
  margin-bottom: 56px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 12px 24px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid transparent;
  border-radius: 100px;
  background: transparent;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.menu-tab:hover {
  color: var(--text);
  border-color: var(--dark-border);
  background: rgba(255,255,255,0.02);
}

.menu-tab.active {
  color: var(--white-pure);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 20px var(--primary-glow);
}

/* Menu Grid */
.menu-grid {
  display: none;
  gap: 0;
}

.menu-grid.active {
  display: block;
  animation: menuFadeIn 0.5s var(--ease-out-expo);
}

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

/* Menu Items */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--dark-border);
  transition: background var(--transition-fast);
  gap: 20px;
}

.menu-item:first-child {
  border-top: 1px solid var(--dark-border);
}

.menu-item:hover {
  background: rgba(255,255,255,0.01);
}

.menu-item-info {
  flex: 1;
  min-width: 0;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-item-name small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.menu-item-name .spicy {
  color: var(--accent-warm);
  font-size: 0.9rem;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.menu-item-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.variant {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(194,24,91,0.08);
  border: 1px solid rgba(194,24,91,0.15);
  color: var(--primary);
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  padding-top: 2px;
}

/* Category price header for bar menu */
.menu-category-price {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 48px;
  letter-spacing: 1px;
  text-shadow: 0 0 40px var(--primary-glow);
  position: relative;
}

.menu-category-price::before,
.menu-category-price::after {
  content: '\2014';
  margin: 0 20px;
  color: var(--text-dim);
  opacity: 0.3;
  font-weight: 300;
}

/* Cocktail taste descriptor */
.cocktail-taste {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  margin-left: 4px;
}

/* Menu subcategory headers */
.menu-subcategory {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(194,24,91,0.2);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.menu-subcategory:first-child {
  margin-top: 0;
}

.menu-subcategory-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

/* Two column layout for menu */
.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  align-items: start;
}

.menu-columns--spaced {
  margin-top: 32px;
}

.map-iframe {
  border: 0;
}

/* ============================================
   HOURS
   ============================================ */
.hours {
  padding: 48px 0;
  background: var(--black);
  border-top: 1px solid var(--dark-border);
}

.hours-inner {
  display: flex;
  justify-content: center;
  gap: 160px;
}

.hours-col {
  text-align: center;
}

.hours-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hours-row {
  display: flex;
  gap: 40px;
}

.hours-block {
  text-align: center;
}

.hours-days {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.hours-time {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 1px;
}

@media (max-width: 800px) {
  .hours-inner { gap: 80px; }
  .hours-row { gap: 24px; }
}

@media (max-width: 600px) {
  .hours { padding: 40px 20px; }
  .hours-inner { gap: 48px; }
  .hours-title { font-size: 1.3rem; margin-bottom: 12px; }
  .hours-days { font-size: 1rem; }
  .hours-time { font-size: 0.9rem; }
  .hours-row { gap: 20px; }
}

@media (max-width: 480px) {
  .hours-inner {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
}

/* Reservation CTA */
.reservation-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--dark-border);
}

.reservation-text {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.reservation-contacts {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.reservation-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary);
  cursor: default;
}

.reservation-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .reservation-text {
    font-size: 1.3rem;
  }

  .reservation-contacts {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .reservation-link {
    font-size: 0.95rem;
  }
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  position: relative;
  width: 100%;
}

.map-frame {
  width: 100%;
  height: 480px;
  position: relative;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.8) brightness(0.55);
  transition: filter 0.6s ease;
}

.map-frame:hover iframe {
  filter: grayscale(0.3) brightness(0.7);
}

.map-contact-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--dark-border);
}

.map-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 32px;
}



.map-bar-logo {
  height: 48px;
  width: auto;
}

.map-bar-dot {
  color: var(--primary);
  font-size: 0.5rem;
  opacity: 0.6;
}

.map-bar-address {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.map-bar-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  cursor: default;
}

.map-bar-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  position: relative;
  padding: 56px 0 64px;
  background: var(--black);
  overflow: hidden;
}

/* Subtle radial glow background */
.newsletter::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(194,24,91,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* --- Ornament --- */
.newsletter-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.newsletter-ornament-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
}

.newsletter-ornament-icon {
  width: 28px;
  height: 28px;
  opacity: 0.7;
  animation: newsletter-pulse 4s ease-in-out infinite;
}

@keyframes newsletter-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.1); }
}

/* --- Title (matches .section-title pattern) --- */
.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.newsletter-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

/* --- Honeypot (anti-bot, invisible) --- */
.newsletter-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

/* --- Form --- */
.newsletter-form {
  margin-bottom: 20px;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.newsletter-input-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(194,24,91,0.15), 0 0 40px rgba(194,24,91,0.08);
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  min-width: 0;
}

.newsletter-input::placeholder {
  color: var(--text-dim);
  font-style: italic;
}

.newsletter-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--primary), #a01548);
  color: var(--white-pure);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, #d81b60, var(--primary));
  transform: translateX(2px);
}

.newsletter-btn:active {
  transform: scale(0.97);
}

.newsletter-btn-icon svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.newsletter-btn:hover .newsletter-btn-icon svg {
  transform: translateX(4px);
}

/* Loader (hidden by default) */
.newsletter-btn-loader {
  display: none;
}

.newsletter-btn-loader svg {
  width: 18px;
  height: 18px;
  animation: newsletter-spin 0.8s linear infinite;
}

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

.newsletter-btn.is-loading .newsletter-btn-text,
.newsletter-btn.is-loading .newsletter-btn-icon {
  display: none;
}

.newsletter-btn.is-loading .newsletter-btn-loader {
  display: inline-flex;
}

/* --- Consents (RODO) --- */
.newsletter-consents {
  max-width: 520px;
  margin: 16px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}

.newsletter-consent input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.newsletter-checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1.5px solid var(--text-dim);
  border-radius: 4px;
  background: var(--dark-card);
  transition: all 0.2s ease;
  position: relative;
}

.newsletter-checkbox::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid var(--white-pure);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}

.newsletter-consent input:checked + .newsletter-checkbox {
  background: var(--primary);
  border-color: var(--primary);
}

.newsletter-consent input:checked + .newsletter-checkbox::after {
  transform: rotate(45deg) scale(1);
}

.newsletter-consent input:focus-visible + .newsletter-checkbox {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.newsletter-consent-text {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.55;
  letter-spacing: 0.2px;
}

.newsletter-consent-text strong {
  color: var(--primary);
  font-weight: 700;
}

.newsletter-consent-text a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(184,172,160,0.3);
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}

.newsletter-consent-text a:hover {
  color: var(--primary);
}

/* Shake animation on consent error */
.newsletter-consent.is-error .newsletter-checkbox {
  border-color: #ef5350;
  animation: newsletter-shake 0.4s ease;
}

@keyframes newsletter-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

/* --- Feedback message --- */
.newsletter-feedback {
  min-height: 24px;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: opacity 0.3s ease;
}

.newsletter-feedback.is-error {
  color: #ef5350;
}

.newsletter-feedback.is-info {
  color: var(--text-muted);
}

/* --- Success state --- */
.newsletter-success {
  animation: newsletter-fadeUp 0.6s var(--ease-out-expo) forwards;
  padding-bottom: 28px;
}

@keyframes newsletter-fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.newsletter-success-icon {
  margin-bottom: 20px;
}

.newsletter-success-icon svg {
  width: 56px;
  height: 56px;
  margin: 0 auto;
}

.newsletter-success-icon .success-circle {
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  animation: newsletter-drawCircle 0.6s 0.2s ease forwards;
}

.newsletter-success-icon .success-check {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: newsletter-drawCheck 0.4s 0.7s ease forwards;
}

@keyframes newsletter-drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes newsletter-drawCheck {
  to { stroke-dashoffset: 0; }
}

.newsletter-success-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.newsletter-success-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* --- Privacy note --- */
.newsletter-privacy {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.3px;
  line-height: 1.6;
  margin-top: 24px;
}

.newsletter-privacy a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(184,172,160,0.3);
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.newsletter-privacy a:hover {
  color: var(--primary);
}

/* --- Responsive --- */
@media (max-width: 600px) {
  .newsletter {
    padding: 48px 0 48px;
  }

  .newsletter-input-group {
    flex-direction: column;
    border-radius: var(--radius);
  }

  .newsletter-input {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid var(--dark-border);
  }

  .newsletter-btn {
    justify-content: center;
    padding: 16px;
    border-radius: 0;
  }

}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px 0 32px;
  background: var(--black);
  border-top: 1px solid var(--dark-border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-copy a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  color: var(--text-dim);
  transition: color var(--transition-fast);
}

.footer-socials a svg {
  width: 24px;
  height: 24px;
}

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

/* ============================================
   SCROLL ANIMATIONS (AOS-like)
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="delay-1"] { transition-delay: 0.1s; }
[data-reveal="delay-2"] { transition-delay: 0.2s; }
[data-reveal="delay-3"] { transition-delay: 0.3s; }
[data-reveal="delay-4"] { transition-delay: 0.4s; }

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

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

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-layout { gap: 48px; }
  .menu-columns { gap: 0 32px; }
}

@media (min-width: 1400px) {
  .hero-content { top: 47%; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100dvh;
    background: rgba(11,11,11,0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out-expo);
    z-index: 8999;
    border-left: 1px solid var(--dark-border);
  }

  .nav-links.open { transform: translateX(0); }
  .mobile-overlay.visible { display: block; }

  .nav-links a {
    font-size: 0.9rem;
    padding: 12px 32px;
  }

  .nav-toggle { display: flex; flex-direction: column; justify-content: space-between; }

  .hero { min-height: 100svh; }

  .hero-content { top: 44%; }

  .about { padding: 80px 0; }

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

  .about-visual { order: -1; max-width: 400px; margin: 0 auto; }

  .menu-section { padding: 80px 0; }

  .menu-bar-switcher {
    gap: 12px;
    margin-bottom: 36px;
  }

  .switcher-btn {
    padding: 22px 40px;
  }

  .switcher-title {
    font-size: 1.4rem;
  }

  .subtitle-text {
    font-size: 1.6rem;
  }

  .subtitle-text::before,
  .subtitle-text::after {
    margin: 0 12px;
  }

  .menu-columns { grid-template-columns: 1fr; }

  .menu-tab {
    padding: 10px 18px;
    font-size: 0.68rem;
  }

  .map-frame { height: 360px; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Disable backdrop-filter on mobile — invisible on dark bg, heavy on GPU */
  .navbar.scrolled,
  .nav-links,
  .about-float-card,
  .map-contact-bar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .btn-ghost {
    backdrop-filter: none;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }

  .hero-content { top: 44%; }

  .hero-ctas { flex-direction: column; align-items: center; }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 24px;
  }

  .menu-bar-switcher {
    gap: 10px;
  }

  .switcher-btn {
    padding: 18px 28px;
  }

  .switcher-title {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  .subtitle-text {
    font-size: 1.3rem;
  }

  .subtitle-text::before,
  .subtitle-text::after {
    margin: 0 10px;
  }

  .menu-tabs { gap: 4px; }

  .menu-tab {
    padding: 8px 14px;
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  .menu-item { padding: 18px 0; }

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

  .map-frame { height: 300px; }

  .map-bar-inner {
    flex-direction: column;
    gap: 4px;
    padding: 10px 16px;
  }

  .map-bar-dot { display: none; }

  .map-bar-address { font-size: 0.78rem; }
}

/* ============================================
   AUDIT FIX: Reduced motion (accessibility)
   ============================================ */
@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;
  }

  .gallery-track {
    animation-duration: 120s !important;
  }

  .hero-title,
  .hero-subtitle,
  .hero-ctas {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-title {
    opacity: 1 !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================
   AUDIT FIX: Print styles
   ============================================ */
@media print {
  .preloader,
  .navbar,
  .mobile-overlay,
  .hero-overlay,
  .hero-vignette,
  .hero-ctas,
  .nav-music,
  .food-gallery,
  .map-section,
  .footer-socials {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .hero {
    height: auto;
    min-height: auto;
    page-break-after: always;
  }

  .hero-bg img {
    position: static;
    max-height: 300px;
  }

  .hero-title,
  .hero-subtitle {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    color: #000;
    text-shadow: none;
  }

  .hero-title { opacity: 1 !important; }

  .menu-content {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .menu-grid {
    display: block !important;
  }

  .menu-columns {
    grid-template-columns: 1fr 1fr;
  }

  .menu-item {
    border-bottom-color: #ccc;
  }

  .menu-item-name,
  .section-title,
  .hours-title {
    color: #000;
  }

  .menu-item-price,
  .primary,
  .section-label {
    color: #c2185b;
  }

  .menu-item-desc {
    color: #333;
  }

  a[href]::after {
    content: none;
  }
}
