/* ============================================
   DRAMA BAR — Luxury Cocktail Bar, Valjevo
   ============================================ */

:root {
  --black: #0a0710;
  --charcoal: #140d1d;
  --charcoal-2: #1c1228;
  --gold: #e23fd4;
  --gold-light: #f6a8ff;
  --gold-dim: #8a3f96;
  --cream: #f1e7fb;
  --text-muted: #a896bd;
  --line: rgba(226, 63, 212, 0.2);
  --violet: #8b5cf6;
  --violet-light: #c4b5fd;

  --serif: "Playfair Display", "Georgia", serif;
  --script: "Cormorant Garamond", serif;
  --sans: "Cormorant Garamond", serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  /* clip prevents horizontal scroll (Samsung/Android) WITHOUT breaking
     iOS Safari smooth-scroll & sticky the way overflow-x:hidden does */
  overflow-x: clip;
  width: 100%;
  /* anchor links land below the fixed navbar on every device */
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: clip;
  cursor: default;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- Accessibility: focus & skip link ---------- */
.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  padding: 12px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 10001;
  transition: top 0.3s var(--ease);
  border-radius: 0 0 4px 4px;
}
.skip-link:focus {
  top: 0;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.day-chip:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

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

/* ---------- Custom cursor dot ---------- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease), opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
  opacity: 0.5;
}
.cursor-ring.grow {
  width: 60px;
  height: 60px;
  opacity: 0.9;
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  height: 100vh;
  height: 100dvh;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-mark {
  font-family: var(--script);
  font-style: italic;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  opacity: 0;
  animation: fadeUp 1s var(--ease) forwards 0.2s;
}
.preloader-line {
  width: 160px;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.preloader-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--gold);
  animation: loadBar 1.8s var(--ease) forwards 0.3s;
}
@keyframes loadBar {
  to {
    width: 100%;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Noise / grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 16px 48px;
  background: rgba(10, 7, 16, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.nav-logo img {
  height: 30px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(226, 63, 212, 0.35));
  transition: height 0.4s var(--ease), filter 0.4s var(--ease);
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 16px rgba(246, 168, 255, 0.6));
}
.navbar.scrolled .nav-logo img {
  height: 26px;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding-bottom: 6px;
  color: var(--cream);
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover {
  color: var(--gold-light);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  border: 1px solid var(--gold-dim);
  padding: 11px 26px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 600;
}
.nav-burger span {
  width: 26px;
  height: 1px;
  background: var(--gold-light);
  transition: 0.3s;
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  height: 100vh;
  height: 100dvh;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(28, 18, 40, 0.9) 0%, rgba(10, 7, 16, 0.98) 60%),
    var(--black);
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 88px 30px 40px;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
  overflow: hidden;
}
.mobile-menu.open {
  transform: translateY(0);
}
.mobile-menu-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 520px;
  max-width: 120vw;
  background: radial-gradient(circle, rgba(226, 63, 212, 0.22) 0%, rgba(226, 63, 212, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.mobile-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: border-color 0.3s, transform 0.4s var(--ease), background 0.3s;
}
.mobile-close:hover {
  border-color: var(--gold);
  background: rgba(226, 63, 212, 0.1);
  transform: rotate(90deg);
}
.mobile-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-light);
}
.mobile-menu-logo {
  width: 168px;
  height: auto;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 18px rgba(226, 63, 212, 0.4));
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 0.5s var(--ease) 0.1s, transform 0.5s var(--ease) 0.1s;
}
.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 360px;
  position: relative;
  z-index: 1;
}
.mobile-links a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 6px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--cream);
  border-bottom: 1px solid rgba(226, 63, 212, 0.14);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s, padding-left 0.35s var(--ease);
}
.mobile-links a:first-child {
  border-top: 1px solid rgba(226, 63, 212, 0.14);
}
.mobile-links .mm-num {
  font-family: var(--script);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  min-width: 26px;
}
.mobile-links .mm-text {
  flex: 1;
}
.mobile-links .mm-arrow {
  font-size: 1.1rem;
  color: var(--gold-light);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.mobile-links a:hover,
.mobile-links a:active {
  color: var(--gold-light);
  padding-left: 16px;
}
.mobile-links a:hover .mm-arrow,
.mobile-links a:active .mm-arrow {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-cta {
  margin-top: 34px;
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  padding: 15px 40px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.3s, color 0.3s;
}
.mobile-menu-foot {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s var(--ease) 0.45s;
}
.mobile-menu-foot a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.mobile-menu-foot a:hover {
  border-color: var(--gold);
  background: rgba(226, 63, 212, 0.1);
}
.mobile-menu-foot a svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-light);
}
.mobile-menu-tag {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}
/* staggered reveal when menu opens */
.mobile-menu.open .mobile-menu-logo,
.mobile-menu.open .mobile-links a,
.mobile-menu.open .mobile-menu-cta,
.mobile-menu.open .mobile-menu-foot {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .mobile-links a:nth-child(1) { transition-delay: 0.16s; }
.mobile-menu.open .mobile-links a:nth-child(2) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-links a:nth-child(3) { transition-delay: 0.28s; }
.mobile-menu.open .mobile-links a:nth-child(4) { transition-delay: 0.34s; }
.mobile-menu.open .mobile-links a:nth-child(5) { transition-delay: 0.40s; }
.mobile-menu.open .mobile-menu-cta { transition-delay: 0.46s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  filter: brightness(0.42) saturate(1.05);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  filter: brightness(0.5) saturate(1.15);
}
.hero[data-parallax] .hero-bg {
  will-change: transform;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(10, 7, 16, 0.1) 0%, rgba(10, 7, 16, 0.85) 78%),
    linear-gradient(180deg, rgba(10, 7, 16, 0.55) 0%, rgba(10, 7, 16, 0.15) 30%, rgba(10, 7, 16, 0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 1s var(--ease) forwards 0.6s;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(3.4rem, 11vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 18px 0 22px;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) forwards 0.85s;
}
.hero-logo {
  display: block;
  width: clamp(280px, 62vw, 640px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 34px rgba(226, 63, 212, 0.45));
}
.hero-title em {
  font-family: var(--script);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
  display: block;
  font-size: 0.5em;
  margin-top: 10px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 38px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) forwards 1.1s;
}
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease) forwards 1.3s;
}
.btn {
  display: inline-block;
  padding: 16px 38px;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold-dim);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
  z-index: -1;
}
.btn:hover {
  color: var(--black);
  border-color: var(--gold);
}
.btn:hover::before {
  transform: translateY(0);
}
.btn-solid {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-solid::before {
  background: var(--cream);
}
.btn-solid:hover {
  color: var(--black);
}

.scroll-cue {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) forwards 1.6s;
}
.scroll-cue span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% {
    top: -100%;
  }
  60% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}

/* ---------- Section shell ---------- */
section {
  position: relative;
  padding: 150px 0;
}
.section-tight {
  padding: 110px 0;
}
.eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--cream);
}
.section-title em {
  font-family: var(--script);
  font-style: italic;
  color: var(--gold-light);
  font-weight: 500;
}
.divider {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}
.divider.center {
  margin: 28px auto;
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1.in-view {
  transition-delay: 0.12s;
}
.reveal-delay-2.in-view {
  transition-delay: 0.24s;
}
.reveal-delay-3.in-view {
  transition-delay: 0.36s;
}

/* ---------- About ---------- */
.about {
  background: var(--charcoal);
  padding-bottom: 70px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-solo {
  max-width: 720px;
  text-align: center;
}
.about-solo p {
  color: var(--text-muted);
  margin-bottom: 22px;
  font-size: 1.08rem;
}
.about-solo .stats-row {
  justify-content: center;
}
.about-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease);
}
.about-media:hover img {
  transform: scale(1);
}
.about-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold);
  z-index: 2;
  opacity: 0.6;
  pointer-events: none;
}
.about-frame-num {
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-family: var(--script);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
  z-index: 3;
  letter-spacing: 0.05em;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 22px;
  font-size: 1.08rem;
}
.stats-row {
  display: flex;
  gap: 56px;
  margin-top: 40px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold-light);
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ---------- News / novosti slideshow ---------- */
.news {
  padding: 60px 0 110px;
  background: var(--charcoal);
  text-align: center;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 50px 0;
  background: var(--charcoal);
}
.section-divider-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 280px;
  width: 100%;
}
.section-divider .divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 1.1s var(--ease);
}
.section-divider.in-view .divider-line {
  transform: scaleX(1);
}
.section-divider .divider-diamond {
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  transform: rotate(45deg) scale(0);
  transition: transform 0.8s var(--ease) 0.4s;
  flex: 0 0 auto;
}
.section-divider.in-view .divider-diamond {
  transform: rotate(45deg) scale(1);
}
.news-head {
  margin-bottom: 10px;
}
.news-slideshow {
  position: relative;
  max-width: 420px;
  min-height: 660px;
  margin: 50px auto 0;
}
.news-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: var(--black);
  border: 1px solid var(--line);
  padding: 28px 28px 34px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.news-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}
.news-slide-media {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  overflow: hidden;
  margin: 0 auto 26px;
  border: 1px solid var(--line);
}
.news-slide-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold);
  opacity: 0.55;
  z-index: 2;
  pointer-events: none;
  transition: inset 0.6s var(--ease);
}
.news-slide-media:hover::before {
  inset: 8px;
}
.news-slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(246, 168, 255, 0.22) 48%, transparent 66%);
  background-size: 250% 250%;
  background-position: 120% 120%;
  animation: shimmerSweep 5s ease-in-out infinite;
}
.news-slide-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: brightness(0.94) saturate(1.05);
  transition: transform 1.4s var(--ease), filter 0.6s var(--ease);
}
.news-slide-media:hover video {
  transform: scale(1);
  filter: brightness(1) saturate(1.1);
}
.news-date {
  display: block;
  font-family: var(--script);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.news-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.25;
}
.news-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 380px;
}

/* ---------- Signature / feature cocktails ---------- */
.signature {
  background: var(--black);
}
.sig-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}
.sig-head p {
  color: var(--text-muted);
  margin-top: 20px;
}
.sig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.sig-card {
  background: var(--black);
  padding: 56px 38px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.sig-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s var(--ease), inset 0.5s var(--ease);
}
.sig-card:hover {
  background: var(--charcoal-2);
  transform: translateY(-10px);
  box-shadow: 0 24px 44px rgba(226, 63, 212, 0.18);
  z-index: 2;
}
.sig-card:hover::before {
  opacity: 0.45;
  inset: 10px;
}
.sig-img {
  width: 130px;
  height: 130px;
  margin: 0 auto 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
  position: relative;
  transition: transform 0.6s var(--ease), border-color 0.5s;
}
.sig-card:hover .sig-img {
  transform: scale(1.07);
  border-color: var(--gold);
}
.sig-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(246, 168, 255, 0.28) 48%, transparent 66%);
  background-size: 250% 250%;
  background-position: 120% 120%;
  animation: shimmerSweep 6s ease-in-out infinite;
}
.sig-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.2s var(--ease);
}
.sig-card:hover .sig-img img {
  transform: scale(1.15);
}
.sig-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.sig-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
  min-height: 48px;
  position: relative;
  z-index: 2;
}
.sig-price {
  font-family: var(--script);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.5s var(--ease);
}
.sig-card:hover .sig-price {
  border-color: var(--gold-dim);
}

/* ---------- Menu card section ---------- */
.menu-section {
  background: var(--charcoal);
  text-align: center;
}
.menu-carousel {
  position: relative;
  max-width: 980px;
  margin: 56px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.menu-stage {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1587 / 1715;
  overflow: hidden;
  border: 1px solid var(--gold-dim);
  background: var(--cream);
  box-shadow: 0 30px 70px rgba(226, 63, 212, 0.22), 0 0 0 1px rgba(246, 168, 255, 0.06);
  animation: menuStageGlow 5s ease-in-out infinite;
}
@keyframes menuStageGlow {
  0%, 100% { box-shadow: 0 30px 70px rgba(226, 63, 212, 0.18), 0 0 0 1px rgba(246, 168, 255, 0.05); }
  50% { box-shadow: 0 34px 80px rgba(226, 63, 212, 0.32), 0 0 0 1px rgba(246, 168, 255, 0.12); }
}
.menu-stage-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  z-index: 4;
  pointer-events: none;
  border-color: var(--gold-light);
}
.menu-stage-corner-tl { top: 10px; left: 10px; border-top: 1.5px solid; border-left: 1.5px solid; }
.menu-stage-corner-tr { top: 10px; right: 10px; border-top: 1.5px solid; border-right: 1.5px solid; }
.menu-stage-corner-bl { bottom: 10px; left: 10px; border-bottom: 1.5px solid; border-left: 1.5px solid; }
.menu-stage-corner-br { bottom: 10px; right: 10px; border-bottom: 1.5px solid; border-right: 1.5px solid; }
.menu-stage-shimmer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 35%, rgba(246, 168, 255, 0.18) 50%, transparent 65%);
  background-size: 250% 250%;
  background-position: 120% 120%;
  animation: shimmerSweep 6s ease-in-out infinite;
}
.menu-page {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.menu-page.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}
.menu-page.leave-left { opacity: 0; transform: scale(0.97) translateX(-3%); }
.menu-page.leave-right { opacity: 0; transform: scale(0.97) translateX(3%); }
.menu-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-arrow {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  background: rgba(20, 13, 29, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, opacity 0.3s;
}
.menu-arrow:hover {
  border-color: var(--gold);
  background: rgba(226, 63, 212, 0.12);
}
.menu-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-light);
}
.menu-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  height: 100vh;
  height: 100dvh;
  background: rgba(10, 7, 16, 0.96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
  padding: 40px 20px;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-height: 88vh;
  max-width: 90vw;
  object-fit: contain;
  border: 1px solid var(--line);
  transform: scale(0.94);
  transition: transform 0.5s var(--ease);
}
.lightbox.open img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 32px;
  right: 40px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}
.lightbox-close:hover {
  border-color: var(--gold);
  transform: rotate(90deg);
}
.lightbox-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-light);
}

/* ---------- Gallery slideshow ---------- */
.gallery {
  background: var(--black);
  overflow: hidden;
}
.gallery-head {
  text-align: center;
  margin-bottom: 70px;
}
.slideshow {
  position: relative;
  width: 100%;
  height: 78vh;
  max-height: 720px;
  overflow: hidden;
}
.slideshow::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid var(--gold);
  opacity: 0.5;
  z-index: 5;
  pointer-events: none;
  transition: inset 0.8s var(--ease), opacity 0.8s var(--ease);
}
.slideshow:hover::before {
  inset: 14px;
  opacity: 0.85;
}
.slideshow-shimmer {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(246, 168, 255, 0.16) 48%, transparent 66%);
  background-size: 250% 250%;
  background-position: 120% 120%;
  animation: shimmerSweep 7s ease-in-out infinite;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s var(--ease), transform 4s linear;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--black);
}
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(40px) brightness(0.45) saturate(1.3);
  transform: scale(1.15);
}
.video-fg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
}
.slide-caption {
  position: absolute;
  left: 48px;
  bottom: 44px;
  z-index: 3;
}
.slide-caption .tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.slide-caption .title {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--cream);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--ease) 0.1s, transform 0.8s var(--ease) 0.1s;
}
.slide.active .slide-caption .tag,
.slide.active .slide-caption .title {
  opacity: 1;
  transform: translateY(0);
}
.slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 7, 16, 0.15) 0%, rgba(10, 7, 16, 0.05) 50%, rgba(10, 7, 16, 0.85) 100%);
  z-index: 2;
  pointer-events: none;
}
/* ---------- Info / hours / location ---------- */
.info {
  background: var(--black);
}
.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: start;
}
.info-block {
  margin-bottom: 44px;
}
.info-block h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.96rem;
}
.info-row span:last-child {
  color: var(--cream);
}
.info-row-link {
  transition: border-color 0.35s var(--ease), padding-left 0.35s var(--ease);
}
.info-row-link:hover {
  border-color: var(--gold);
  padding-left: 6px;
}
.info-row-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-row-label svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.info-row-link a {
  color: var(--cream);
  transition: color 0.3s;
}
.info-row-link:hover a {
  color: var(--gold-light);
}
.week-glance {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.day-chip {
  flex: 1 1 0;
  min-width: 54px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 6px;
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), border-color 0.4s, background 0.4s;
}
.week-glance.in-view .day-chip {
  opacity: 1;
  transform: translateY(0);
}
.week-glance.in-view .day-chip:nth-child(1) { transition-delay: 0.03s; }
.week-glance.in-view .day-chip:nth-child(2) { transition-delay: 0.09s; }
.week-glance.in-view .day-chip:nth-child(3) { transition-delay: 0.15s; }
.week-glance.in-view .day-chip:nth-child(4) { transition-delay: 0.21s; }
.week-glance.in-view .day-chip:nth-child(5) { transition-delay: 0.27s; }
.week-glance.in-view .day-chip:nth-child(6) { transition-delay: 0.33s; }
.week-glance.in-view .day-chip:nth-child(7) { transition-delay: 0.39s; }
.day-chip:hover {
  border-color: var(--gold);
  background: var(--charcoal);
}
.day-chip .day-name {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.day-chip .day-hours {
  font-family: var(--script);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--cream);
}
.day-chip-late {
  background: linear-gradient(160deg, rgba(226, 63, 212, 0.14), var(--charcoal-2));
  border-color: var(--gold-dim);
}
.day-chip-late .day-name {
  color: var(--gold-light);
}
.day-chip-late .day-hours {
  color: var(--gold-light);
}
.day-chip-late::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(246, 168, 255, 0.2) 48%, transparent 66%);
  background-size: 250% 250%;
  background-position: 120% 120%;
  animation: shimmerSweep 6s ease-in-out infinite;
}
.day-chip-today {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 10px 24px rgba(226, 63, 212, 0.22);
}
.day-chip-today::before {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px 2px rgba(226, 63, 212, 0.7);
  animation: dotPulse 1.6s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}
.week-glance-note {
  margin-top: 16px;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 480px) {
  .day-chip {
    min-width: 40px;
    padding: 12px 4px;
  }
  .day-chip .day-hours {
    font-size: 0.8rem;
  }
}
.map-frame {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.4s var(--ease);
}
.map-frame:hover {
  border-color: var(--gold);
}
.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(226, 63, 212, 0.08);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 1;
  pointer-events: none;
}
.map-frame:hover::after {
  opacity: 1;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) brightness(0.95) contrast(0.9);
}
.map-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(10, 7, 16, 0.85);
  border: 1px solid var(--gold-dim);
  padding: 10px 18px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  z-index: 2;
  pointer-events: none;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: 160px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.32);
  transform: scale(1.1);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--black) 0%, rgba(10, 7, 16, 0.4) 50%, var(--black) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content .eyebrow {
  text-align: center;
}

/* ---------- Footer ---------- */
footer {
  background: var(--black);
  padding: 90px 0 36px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 70px;
}
.footer-logo {
  margin-bottom: 22px;
}
.footer-logo img {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(226, 63, 212, 0.3));
}
.footer-col p,
.footer-col a {
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--gold-light);
}
.footer-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.social-row {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.social-row a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.social-row a svg {
  width: 17px;
  height: 17px;
  stroke: var(--gold-light);
  transition: stroke 0.3s;
}
.social-row a:hover svg {
  stroke: var(--black);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Reservation page ---------- */
.res-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}
.res-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  transform: scale(1.1);
}
.res-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 7, 16, 0.4) 0%, var(--black) 100%);
}
.res-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.res-section {
  background: var(--black);
  padding: 0 0 150px;
}
.res-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: flex-start;
}
.res-side h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.res-side p {
  color: var(--text-muted);
  margin-bottom: 28px;
}
.res-side-img {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  max-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 32px;
}
.res-side-img::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold);
  opacity: 0.55;
  z-index: 2;
  pointer-events: none;
  transition: inset 0.6s var(--ease);
}
.res-side-img:hover::before {
  inset: 8px;
}
.res-side-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(246, 168, 255, 0.22) 48%, transparent 66%);
  background-size: 250% 250%;
  background-position: 120% 120%;
  animation: shimmerSweep 5s ease-in-out infinite;
}
@keyframes shimmerSweep {
  0%, 55% {
    background-position: 120% 120%;
  }
  100% {
    background-position: -20% -20%;
  }
}
.res-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  filter: brightness(0.94) saturate(1.05);
  transition: transform 1.4s var(--ease), filter 0.6s var(--ease);
}
.res-side-img:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}
.res-side-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 4;
  font-family: var(--script);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--gold-light);
  background: rgba(10, 7, 16, 0.55);
  padding: 6px 14px;
  border: 1px solid var(--gold-dim);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.res-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: 56px;
  position: relative;
}
.res-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---- Instagram direct-reservation card ---- */
.res-card-ig {
  overflow: hidden;
}
.res-card-ig::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(246, 168, 255, 0.12) 48%, transparent 66%);
  background-size: 250% 250%;
  background-position: 120% 120%;
  animation: shimmerSweep 7s ease-in-out infinite;
}
.res-card-ig > * {
  position: relative;
  z-index: 1;
}
.res-card-eyebrow {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.res-card-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 18px;
}
.res-card-title em {
  font-family: var(--script);
  font-style: italic;
  color: var(--gold-light);
}
.res-card-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
}
.res-checklist {
  list-style: none;
  margin: 0 0 38px;
  padding: 0;
}
.res-checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-size: 1.02rem;
}
.res-checklist li:last-child {
  border-bottom: none;
}
.res-checklist svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.res-ig-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.res-ig-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
.field {
  margin-bottom: 26px;
}
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1.05rem;
  padding: 10px 2px;
  transition: border-color 0.3s;
}
.field select option {
  background: var(--charcoal);
  color: var(--cream);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field textarea {
  resize: none;
  height: 70px;
}
.message-preview {
  margin-top: 36px;
  padding: 26px 28px;
  background: var(--black);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
}
.message-preview .mp-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.message-preview p {
  font-family: var(--sans);
  font-size: 1.02rem;
  color: var(--cream);
  line-height: 1.7;
  white-space: pre-wrap;
}
.res-submit {
  width: 100%;
  margin-top: 36px;
  text-align: center;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.res-submit::before {
  background: var(--cream);
}
.res-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.res-note svg {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  stroke: var(--gold);
  margin-right: 6px;
}

/* ---------- Reviews ---------- */
.reviews-section {
  background: var(--charcoal);
  text-align: center;
}
.reviews-title {
  text-align: center;
  margin-bottom: 54px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}
.review-card {
  position: relative;
  overflow: hidden;
  text-align: left;
  padding: 34px 32px;
  background: linear-gradient(160deg, rgba(28, 18, 40, 0.9) 0%, rgba(16, 10, 24, 0.9) 100%);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s var(--ease);
}
.review-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--gold);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease), inset 0.45s var(--ease);
}
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(226, 63, 212, 0.2);
  border-color: var(--gold-dim);
}
.review-card:hover::before {
  opacity: 0.45;
  inset: 8px;
}
.review-shimmer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 35%, rgba(246, 168, 255, 0.14) 50%, transparent 65%);
  background-size: 250% 250%;
  background-position: 120% 120%;
  opacity: 0;
  animation: shimmerSweep 6s ease-in-out infinite;
  transition: opacity 0.4s var(--ease);
}
.review-card:hover .review-shimmer {
  opacity: 1;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.review-avatar {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  background: linear-gradient(140deg, var(--gold) 0%, var(--gold-dim) 100%);
  box-shadow: 0 6px 18px rgba(226, 63, 212, 0.3);
}
.review-meta {
  flex: 1;
  min-width: 0;
}
.review-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}
.review-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.review-google {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}
.review-stars {
  margin: 18px 0 10px;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: #f5b740;
  position: relative;
  z-index: 2;
}
.review-text {
  font-family: var(--script);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--cream);
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.review-tags span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(226, 63, 212, 0.06);
}
.reviews-cta {
  margin-top: 48px;
  text-align: center;
}
.review-btn {
  position: relative;
  overflow: hidden;
  letter-spacing: 0.16em;
}
.review-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
}
.review-btn:hover::after {
  left: 130%;
}

/* ---------- Misc ---------- */
.back-top {
  position: fixed;
  bottom: 34px;
  right: 34px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(20, 17, 15, 0.7);
  border: 1px solid var(--gold-dim);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 400;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.3s;
}
.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-top:hover {
  border-color: var(--gold);
}
.back-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-light);
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .about-grid,
  .info-grid,
  .res-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sig-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 22px 24px;
  }
  .navbar.scrolled {
    padding: 14px 24px;
  }
  .nav-links,
  .navbar > .nav-cta {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  /* Menu carousel: manje strelice, scena puna sirina na telefonu */
  .menu-carousel {
    gap: 14px;
  }
  .menu-arrow {
    width: 40px;
    height: 40px;
  }
  .menu-stage {
    width: min(300px, 100%);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  section {
    padding: 100px 0;
  }
  .container {
    padding: 0 22px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .res-card {
    padding: 32px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .slide-caption {
    left: 24px;
    bottom: 28px;
  }
  .slide-caption .title {
    font-size: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  /* ---- Mobile-specific redesign (not a shrunk desktop) ---- */
  .hero {
    height: 100svh;
    min-height: 560px;
  }
  .hero-content {
    padding: 0 18px;
  }
  .hero-sub {
    max-width: 320px;
    font-size: 0.95rem;
  }
  .nav-burger {
    padding: 12px;
    margin: -12px;
  }
  .about-solo p {
    font-size: 0.98rem;
  }
  .stats-row {
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .news-slideshow {
    max-width: 100%;
    min-height: 0;
  }
  .news-slide {
    position: static;
    opacity: 1;
    transform: none;
    padding: 26px 20px 30px;
  }
  .news-slide-media {
    width: 62%;
    max-width: 220px;
  }
  .slideshow {
    height: 60vh;
    min-height: 380px;
    max-height: 560px;
  }
  .slideshow::before {
    inset: 12px;
  }
  .sig-card {
    padding: 40px 24px;
  }
  .sig-img {
    width: 108px;
    height: 108px;
  }
  .menu-preview {
    margin: 40px auto 0;
  }
  .week-glance {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    margin: 0 -22px;
    padding-left: 22px;
    padding-right: 22px;
  }
  .week-glance::-webkit-scrollbar {
    display: none;
  }
  .day-chip {
    flex: 0 0 64px;
    scroll-snap-align: start;
  }
  .map-frame {
    aspect-ratio: 4/3;
  }
  .res-side-img {
    max-height: 320px;
  }
  .social-row a {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: clamp(2.6rem, 14vw, 3.6rem);
  }
  .news-slide-media {
    width: 72%;
  }
}
