/* ============================================================
   Pr' Isanu — Style Sheet
   Design: "Editorial Warmth"
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --espresso:   #1a0f07;
  --espresso2:  #2a1508;
  --parchment:  #f0e6d0;
  --parchment2: #e8d9bf;
  --accent:     #E49150;
  --accent-dim: rgba(228, 145, 80, 0.15);
  --text-muted: rgba(240, 230, 208, 0.60);
  --text-light: rgba(240, 230, 208, 0.85);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --section-pad: clamp(4rem, 8vw, 7rem);
  --container:   1160px;
  --radius:      6px;

  --nav-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
}

body {
  background-color: var(--espresso);
  color: var(--parchment);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Grain Overlay ── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/></filter><rect width='300' height='300' filter='url(%23n)' opacity='1'/></svg>");
  background-size: 200px 200px;
  animation: grain-shift 8s steps(10) infinite;
}

@keyframes grain-shift {
  0%  { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  20% { transform: translate(3%, 2%); }
  30% { transform: translate(-1%, 4%); }
  40% { transform: translate(2%, -2%); }
  50% { transform: translate(-3%, 1%); }
  60% { transform: translate(1%, -4%); }
  70% { transform: translate(4%, 3%); }
  80% { transform: translate(-2%, 2%); }
  90% { transform: translate(3%, -1%); }
  100%{ transform: translate(0, 0); }
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header--left { text-align: left; }
.section-header--light h2,
.section-header--light .section-eyebrow { color: var(--parchment); }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--parchment);
}

.accent-rule {
  width: 3rem;
  height: 2px;
  background: var(--accent);
  margin-top: 1.25rem;
  margin-inline: auto;
  border-radius: 1px;
}
.section-header--left .accent-rule { margin-inline: 0; }

/* ── Fade-in on Scroll ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

#navbar.scrolled {
  background: rgba(26, 15, 7, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(228, 145, 80, 0.12);
}

.nav-inner {
  max-width: var(--container);
  height: 100%;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--accent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

#navbar.scrolled .nav-logo img { opacity: 1; }

.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--parchment);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  white-space: nowrap;
}
#navbar.scrolled .nav-logo span { opacity: 1; }

.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--parchment);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { opacity: 1; color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--parchment);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

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

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

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      160deg,
      rgba(26, 15, 7, 0.72) 0%,
      rgba(26, 15, 7, 0.40) 45%,
      rgba(228, 145, 80, 0.10) 80%,
      rgba(26, 15, 7, 0.75) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-logo {
  width: clamp(90px, 14vw, 140px);
  height: clamp(90px, 14vw, 140px);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 0 0 40px rgba(228, 145, 80, 0.25), 0 0 0 6px rgba(228, 145, 80, 0.08);
  animation: hero-logo-in 1.2s var(--ease) both;
}

@keyframes hero-logo-in {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

#hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--parchment);
  letter-spacing: -0.01em;
  animation: hero-text-in 1.2s 0.2s var(--ease) both;
}

.hero-sub {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.8vw, 0.95rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

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

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--parchment2);
  animation: hero-text-in 1.2s 0.4s var(--ease) both;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--parchment);
  background: transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: hero-text-in 1.2s 0.6s var(--ease) both;
}
.btn-hero:hover {
  background: var(--accent);
  color: var(--espresso);
  box-shadow: 0 8px 32px rgba(228, 145, 80, 0.25);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
  animation: hero-text-in 1.2s 0.6s var(--ease) both;
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn-hero,
  .btn-call {
    width: 100%;
    justify-content: center;
  }
}

/* Remove per-button top margin + animation since the wrapper handles it */
.hero-ctas .btn-hero {
  margin-top: 0;
  animation: none;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--accent);
  border: 1.5px solid var(--accent);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.2s var(--ease);
}
.btn-call:hover {
  background: #f0a060;
  border-color: #f0a060;
  box-shadow: 0 8px 32px rgba(228, 145, 80, 0.35);
  transform: translateY(-1px);
}
.btn-call:active {
  transform: translateY(0);
}

.btn-arrow {
  display: inline-block;
  animation: arrow-pulse 1.8s ease-in-out infinite;
}
@keyframes arrow-pulse {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--parchment);
  opacity: 0.45;
  animation: scroll-hint 2.4s ease-in-out infinite, hero-text-in 1.2s 1s var(--ease) both;
  transition: opacity 0.2s;
}
.hero-scroll-hint:hover { opacity: 0.8; }
@keyframes scroll-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   MENU SECTION
   ============================================================ */
#meni {
  padding-block: var(--section-pad);
  background: var(--espresso);
}

.menu-category {
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.category-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(228, 145, 80, 0.25);
}

.category-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: var(--parchment);
  line-height: 1;
}

.category-badge {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 2px;
  padding: 0.2em 0.6em;
  flex-shrink: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(228, 145, 80, 0.08);
  border: 1px solid rgba(228, 145, 80, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.menu-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--espresso2);
  transition: background 0.2s var(--ease);
}
.menu-card:hover { background: #321a0a; }
.menu-card.featured { background: rgba(228, 145, 80, 0.07); }
.menu-card.featured:hover { background: rgba(228, 145, 80, 0.12); }

.menu-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.menu-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--parchment);
  line-height: 1.2;
}

.menu-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-style: italic;
}

.menu-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.menu-note a {
  color: var(--accent);
  transition: opacity 0.2s;
}
.menu-note a:hover { opacity: 0.8; }

/* ============================================================
   O NAS
   ============================================================ */
#o-nas {
  position: relative;
  padding-block: var(--section-pad);
  overflow: hidden;
}

.o-nas-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.o-nas-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.o-nas-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 15, 7, 0.90) 0%,
    rgba(26, 15, 7, 0.70) 50%,
    rgba(26, 15, 7, 0.85) 100%
  );
}

.o-nas-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.o-nas-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.o-nas-text p {
  color: var(--text-light);
  line-height: 1.8;
}
.o-nas-text p.lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--parchment);
  line-height: 1.6;
}
.o-nas-text strong { color: var(--accent); font-weight: 500; }

.o-nas-est {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.est-line {
  flex: 1;
  height: 1px;
  background: rgba(228, 145, 80, 0.3);
}
.est-year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  white-space: nowrap;
  letter-spacing: 0.08em;
}

/* ============================================================
   GALERIJA — CAROUSEL
   ============================================================ */
#galerija {
  padding-block: var(--section-pad);
  background: var(--espresso);
}

.gallery-carousel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-inline: 10%;
  cursor: grab;
  user-select: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.dragging { cursor: grabbing; scroll-behavior: auto; }

.gallery-slide {
  flex-shrink: 0;
  width: 80%;
  height: clamp(260px, 40vw, 520px);
  border-radius: 10px;
  overflow: hidden;
  background: var(--espresso2);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88);
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  pointer-events: none;
}
.gallery-slide:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.gdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(240, 230, 208, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s, width 0.25s;
  flex-shrink: 0;
}
.gdot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   KONTAKT
   ============================================================ */
#kontakt {
  padding-block: var(--section-pad);
  background: var(--espresso2);
  border-top: 1px solid rgba(228, 145, 80, 0.12);
}

.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.kontakt-info { display: flex; flex-direction: column; gap: 1.75rem; }

.info-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(228, 145, 80, 0.2);
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.info-value {
  color: var(--parchment);
  line-height: 1.6;
  font-size: 0.95rem;
}
.info-value a {
  color: var(--parchment);
  transition: color 0.2s;
}
.info-value a:hover { color: var(--accent); }

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 1rem;
  font-size: 0.9rem;
  color: var(--parchment);
}
.hours-grid span:nth-child(odd) { color: var(--text-muted); }
.hours-grid span:nth-child(even) { font-weight: 500; }

.kontakt-map {
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(228, 145, 80, 0.15);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}
.kontakt-map iframe { filter: grayscale(20%) sepia(10%); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--espresso);
  border-top: 1px solid rgba(228, 145, 80, 0.12);
  padding-top: 3rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--accent);
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--parchment);
  line-height: 1.2;
}
.footer-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.825rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--accent); }

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(228, 145, 80, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.footer-bottom {
  border-top: 1px solid rgba(240, 230, 208, 0.06);
  padding: 1rem clamp(1.25rem, 5vw, 3rem);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(240, 230, 208, 0.3);
  letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {

  .kontakt-inner { grid-template-columns: 1fr; }
  .kontakt-map { height: 300px; }
}

@media (max-width: 700px) {
  /* Nav always solid on mobile — NO backdrop-filter (it traps fixed children) */
  #navbar {
    background: #1a0f07;
    backdrop-filter: none;
  }
  #navbar.scrolled {
    background: #1a0f07;
    backdrop-filter: none;
  }

  /* Logo + name always visible on mobile */
  .nav-logo img,
  .nav-logo span { opacity: 1; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    height: auto;
    background: #1a0f07;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    z-index: 999;
    /* Closed state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links li {
    border-bottom: 1px solid rgba(240, 230, 208, 0.07);
  }
  .nav-links li:first-child {
    border-top: 1px solid rgba(240, 230, 208, 0.07);
  }
  .nav-links li a {
    display: block;
    padding: 1.1rem 1.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--parchment);
    opacity: 1;
    transition: color 0.2s, padding-left 0.25s;
  }
  .nav-links li a:active,
  .nav-links li a:hover { color: var(--accent); padding-left: 2rem; }
  .nav-links a::after { display: none; }

  .gallery-slide { width: 86%; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

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

@media (max-width: 480px) {
  .category-header { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
}

/* ============================================================
   MENU JUMP-NAV
   ============================================================ */
.menu-jumpnav {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: rgba(26, 15, 7, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(228, 145, 80, 0.15);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  margin-inline: calc(clamp(1.25rem, 5vw, 3rem) * -1);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.menu-jumpnav::-webkit-scrollbar { display: none; }

@media (max-width: 700px) {
  .menu-jumpnav {
    -webkit-mask-image: linear-gradient(to right, black 75%, transparent 100%);
    mask-image: linear-gradient(to right, black 75%, transparent 100%);
  }
}

.mjn-link {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0.9rem 1.4rem;
  position: relative;
  transition: color 0.2s var(--ease);
  flex-shrink: 0;
}
.mjn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.4rem;
  right: 1.4rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.mjn-link:hover { color: var(--parchment); }
.mjn-link:hover::after { transform: scaleX(1); }
.mjn-link.active {
  color: var(--accent);
}
.mjn-link.active::after { transform: scaleX(1); }

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee-ticker {
  overflow: hidden;
  background: var(--espresso2);
  border-top: 1px solid rgba(228, 145, 80, 0.18);
  border-bottom: 1px solid rgba(228, 145, 80, 0.18);
  padding-block: 0.65rem;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0.85;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================
   STATUS BADGE
   ============================================================ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3em 0.9em;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  min-height: 1.75rem;
}

.status-badge--open {
  color: #f0c060;
  border-color: rgba(240, 192, 96, 0.3);
  background: rgba(240, 192, 96, 0.07);
}

.status-badge--closed {
  color: var(--text-muted);
  border-color: rgba(240, 230, 208, 0.15);
  background: transparent;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-badge--open .status-dot {
  background: #f0c060;
  box-shadow: 0 0 6px rgba(240, 192, 96, 0.8);
  animation: dot-pulse 2s ease-in-out infinite;
}

.status-badge--closed .status-dot {
  background: var(--text-muted);
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(240, 192, 96, 0.8); }
  50%       { opacity: 0.4; box-shadow: 0 0 2px rgba(240, 192, 96, 0.3); }
}

/* ============================================================
   POSEBNOST — FEATURED DISH
   ============================================================ */
#posebnost {
  background: var(--espresso2);
  border-top: 1px solid rgba(228, 145, 80, 0.08);
  overflow: hidden;
}

.posebnost-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.posebnost-photo {
  overflow: hidden;
}

.posebnost-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.88);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

#posebnost:hover .posebnost-photo img {
  transform: scale(1.04);
  filter: brightness(1);
}

.posebnost-content {
  padding: clamp(2.5rem, 7vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.posebnost-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--parchment);
  line-height: 1.08;
  margin-bottom: 0.75rem;
}

.posebnost-rule {
  margin-inline: 0;
  margin-bottom: 1.5rem;
}

.posebnost-desc {
  color: var(--text-light);
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  line-height: 1.8;
  max-width: 42ch;
  margin-bottom: 1.5rem;
}

.posebnost-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.75rem;
}

.posebnost-btn { animation: none; }

@media (max-width: 700px) {
  .posebnost-inner {
    grid-template-columns: 1fr;
  }
  .posebnost-photo {
    height: 300px;
  }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 5, 2, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
  cursor: zoom-out;
}

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

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  transform: scale(0.94);
  transition: transform 0.35s var(--ease);
  cursor: default;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(240, 230, 208, 0.2);
  color: var(--parchment);
  font-size: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  z-index: 1;
}

.lightbox-close:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.gallery-item { cursor: pointer; }
