/* ==========================================================================
   ODISEJA — Caffe & Restoran
   Main stylesheet
   --------------------------------------------------------------------------
   1.  Design tokens (CSS variables)
   2.  Reset & base
   3.  Typography
   4.  Layout utilities
   5.  Buttons
   6.  Loader
   7.  Cursor / scroll progress
   8.  Navigation
   9.  Hero
   10. About preview
   11. Services
   12. Delivery
   13. News
   14. Gallery + Lightbox
   15. Testimonials slider
   16. CTA
   17. Footer + FAB
   18. Page header (inner pages)
   19. About page
   20. Menu page
   21. Games page
   22. Contact page
   23. Animations & reveals
   24. Responsive
   25. Reduced motion / print
   ========================================================================== */


/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand palette — espresso, brass, cream */
  --c-void:        #0B0907;   /* deep black */
  --c-charcoal:    #14100D;   /* dark charcoal */
  --c-coffee:      #2A1E16;   /* coffee brown */
  --c-coffee-soft: #3B2B20;
  --c-beige:       #C8A97E;   /* warm beige */
  --c-cream:       #F3EADF;   /* cream white */
  --c-gold:        #C9A227;   /* gold accent */
  --c-gold-lite:   #E7C86A;
  --c-gold-deep:   #8E6F14;
  --c-ember:       #B4552B;   /* grill ember — used sparingly */

  /* Semantic (dark theme = default) */
  --bg:            var(--c-void);
  --bg-alt:        var(--c-charcoal);
  --bg-elev:       #1A1512;
  --surface:       rgba(255,255,255,.04);
  --surface-2:     rgba(255,255,255,.07);
  --line:          rgba(200,169,126,.16);
  --line-strong:   rgba(200,169,126,.34);
  --text:          var(--c-cream);
  --text-muted:    rgba(243,234,223,.62);
  --text-dim:      rgba(243,234,223,.42);
  --accent:        var(--c-gold);
  --accent-lite:   var(--c-gold-lite);
  --on-accent:     #17120A;

  /* Gradients */
  --grad-gold:  linear-gradient(135deg, var(--c-gold-lite) 0%, var(--c-gold) 46%, var(--c-gold-deep) 100%);
  --grad-warm:  linear-gradient(160deg, rgba(180,85,43,.20), rgba(201,162,39,.06) 60%, transparent);
  --grad-fade:  linear-gradient(180deg, transparent, var(--bg));

  /* Shadows */
  --sh-sm:  0 2px 10px rgba(0,0,0,.34);
  --sh-md:  0 14px 40px -12px rgba(0,0,0,.62);
  --sh-lg:  0 40px 90px -28px rgba(0,0,0,.78);
  --sh-gold: 0 18px 46px -14px rgba(201,162,39,.42);

  /* Typography */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body:    "Outfit", "Helvetica Neue", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --fs-hero:  clamp(2.9rem, 8vw, 7.4rem);
  --fs-h1:    clamp(2.4rem, 5.4vw, 4.6rem);
  --fs-h2:    clamp(2rem, 4.2vw, 3.5rem);
  --fs-h3:    clamp(1.4rem, 2.4vw, 2rem);
  --fs-lead:  clamp(1.02rem, 1.35vw, 1.2rem);
  --fs-body:  1rem;
  --fs-sm:    .875rem;
  --fs-xs:    .75rem;

  /* Spacing / layout */
  --gap:        1.5rem;
  --space-sec:  clamp(5rem, 10vw, 9.5rem);
  --maxw:       1320px;
  --pad-x:      clamp(1.15rem, 4vw, 3rem);

  /* Radii */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* Motion */
  --ease:      cubic-bezier(.22,.61,.36,1);
  --ease-out:  cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.65,.05,.36,1);
  --t-fast: .22s;
  --t-mid:  .45s;
  --t-slow: .85s;

  --nav-h: 84px;
  --z-nav: 900;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.68;
  letter-spacing: .006em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background var(--t-mid) var(--ease), color var(--t-mid) var(--ease);
}
body.is-locked { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

svg { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

::selection { background: var(--accent); color: var(--on-accent); }

/* Focus visibility (a11y) */
:focus-visible {
  outline: 2px solid var(--accent-lite);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 2000;
  background: var(--accent); color: var(--on-accent);
  padding: .8rem 1.2rem; border-radius: var(--r-sm); font-weight: 500;
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--c-coffee-soft); border-radius: 99px; border: 2px solid var(--bg-alt); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }


/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.02em;
  font-optical-sizing: auto;
}
.h1 { font-size: var(--fs-h1); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); letter-spacing: -.012em; }

h1 em, h2 em, h3 em, .h1 em, .h2 em, .h3 em {
  font-style: italic;
  font-weight: 300;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* italic glifovi (j, g, kose crte) trebaju prostora da background-clip ne odsijeca rubove */
  display: inline-block;
  padding: 0 .08em .06em .02em;
  letter-spacing: .006em;
}

p { color: var(--text-muted); }
p strong { color: var(--text); font-weight: 500; }

.lead {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  max-width: 58ch;
  line-height: 1.72;
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-lite);
  margin-bottom: 1.15rem;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(201,162,39,.6);
  animation: pulse-dot 2.4s var(--ease-out) infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(201,162,39,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(201,162,39,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,162,39,0); }
}

/* Animated underline link */
.link-underline {
  position: relative;
  display: inline-block;
  color: var(--accent-lite);
  font-weight: 400;
  padding-bottom: 3px;
  margin-top: 1.2rem;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--t-mid) var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* Tick list */
.tick-list { margin: 1.8rem 0 2.2rem; display: grid; gap: .8rem; }
.tick-list li {
  display: flex; align-items: flex-start; gap: .8rem;
  color: var(--text-muted); font-size: var(--fs-sm);
}
.tick-list span {
  flex: 0 0 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(201,162,39,.14);
  color: var(--accent-lite);
  font-size: .7rem;
}


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

.section { padding-block: var(--space-sec); position: relative; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.grid-2--tight { gap: clamp(2rem, 4vw, 4rem); }

.sec-head { max-width: 62ch; margin-bottom: clamp(2.6rem, 5vw, 4.5rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head__sub { margin-top: 1.1rem; font-size: var(--fs-lead); }
.sec-head--center .sec-head__sub { margin-inline: auto; }

/* Glass surface */
.glass {
  background: var(--surface);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
}

/* Small spacing / color utilities — used instead of inline styles so the
   markup stays clean for the WordPress port */
.mt-2      { margin-top: .6rem; }
.mt-4      { margin-top: 1.2rem; }
.mb-6      { margin-bottom: 2rem; }
.pt-0      { padding-top: 0; }
.pt-tight  { padding-top: clamp(2.5rem, 5vw, 4rem); }
.on-dark   { color: var(--c-cream); }

/* Kilim strip — subtle Bosnian textile motif as a divider */
.kilim-strip {
  position: absolute; left: 0; right: 0; bottom: 0; height: 10px;
  background-image:
    linear-gradient(135deg, var(--accent) 25%, transparent 25%),
    linear-gradient(225deg, var(--accent) 25%, transparent 25%);
  background-size: 20px 20px;
  background-position: 0 0;
  opacity: .16;
  pointer-events: none;
}

/* Floating orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none; z-index: 1;
}
.orb--1 {
  width: 420px; height: 420px; top: 8%; right: -6%;
  background: radial-gradient(circle, rgba(201,162,39,.30), transparent 68%);
  animation: float-a 16s var(--ease-in-out) infinite;
}
.orb--2 {
  width: 340px; height: 340px; bottom: 10%; left: -5%;
  background: radial-gradient(circle, rgba(180,85,43,.26), transparent 68%);
  animation: float-b 20s var(--ease-in-out) infinite;
}
@keyframes float-a {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50%     { transform: translate3d(-40px, 34px, 0) scale(1.1); }
}
@keyframes float-b {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50%     { transform: translate3d(46px, -28px, 0) scale(1.14); }
}


/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.9rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 500;
  letter-spacing: .01em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-mid) var(--ease-out),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--t-mid) var(--ease-out); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.985); }
.btn:hover svg { transform: translateX(4px); }

.btn--sm { padding: .62rem 1.15rem; font-size: .82rem; }
.btn--lg { padding: 1.22rem 2.4rem; font-size: 1.02rem; }

/* Gold (primary) */
.btn--gold {
  background: var(--grad-gold);
  color: var(--on-accent);
  box-shadow: var(--sh-gold);
  font-weight: 600;
}
.btn--gold::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.55) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .75s var(--ease-out);
}
.btn--gold:hover::before { transform: translateX(120%); }
.btn--gold:hover { box-shadow: 0 24px 60px -14px rgba(201,162,39,.6); }

/* Outline */
.btn--outline {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: var(--surface);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.btn--outline::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--grad-gold);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform var(--t-mid) var(--ease-out);
}
.btn--outline:hover { color: var(--on-accent); border-color: transparent; }
.btn--outline:hover::before { transform: scaleY(1); transform-origin: top; }

/* Ghost (nav) */
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-mono);
  letter-spacing: .04em;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-lite); }

/* Call button (delivery) */
.btn--call {
  background: var(--grad-gold);
  color: var(--on-accent);
  font-weight: 600;
  padding: 1.25rem 2.2rem;
  box-shadow: var(--sh-gold);
}
.btn__pulse {
  position: absolute; inset: 0; border-radius: inherit;
  border: 2px solid var(--accent);
  animation: ring-out 2.6s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes ring-out {
  0%   { transform: scale(1);    opacity: .8; }
  100% { transform: scale(1.22); opacity: 0; }
}
.btn--call:hover svg { transform: rotate(-12deg) scale(1.12); }

/* Ripple */
.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.42);
  transform: scale(0); pointer-events: none;
  animation: ripple .62s var(--ease-out) forwards;
}
@keyframes ripple { to { transform: scale(3.4); opacity: 0; } }


/* ==========================================================================
   6. LOADER
   ========================================================================== */
.loader {
  position: fixed; inset: 0; z-index: 4000;
  display: grid; place-items: center;
  background: radial-gradient(120% 80% at 50% 42%, #1A1512 0%, var(--c-void) 72%);
  transition: opacity .7s var(--ease-out), visibility .7s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; padding: 0 1.5rem; }

/* Rukopisno "Odiseja" — otkriva se slijeva nadesno kao da se pise */
.loader__script { position: relative; display: inline-block; }
.loader__name {
  font-family: "Great Vibes", cursive;
  font-size: clamp(3.4rem, 12vw, 6.6rem);
  line-height: 1.1;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* clip-path otkriva tekst slijeva nadesno */
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  animation: write-reveal 1.15s var(--ease-out) .15s forwards;
  padding: 0 .12em .12em;
  filter: drop-shadow(0 6px 22px rgba(201,162,39,.28));
}
@keyframes write-reveal {
  to { -webkit-clip-path: inset(0 0 0 0); clip-path: inset(0 0 0 0); }
}
/* olovka/tacka svjetla koja klizi po rukopisu */
.loader__pen {
  position: absolute; top: 12%; left: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-gold-lite);
  box-shadow: 0 0 16px 4px rgba(231,200,106,.8);
  opacity: 0;
  animation: pen-move 1.15s var(--ease-out) .15s forwards;
}
@keyframes pen-move {
  0%   { opacity: 1; left: 2%; }
  90%  { opacity: 1; }
  100% { opacity: 0; left: 98%; }
}

.loader__tagline {
  margin-top: .9rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  letter-spacing: .05em;
  color: var(--c-cream);
  opacity: 0;
  animation: tag-fade .7s var(--ease-out) 1.15s forwards;
}
@keyframes tag-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .loader__name { animation: none; -webkit-clip-path: none; clip-path: none; }
  .loader__pen { display: none; }
  .loader__tagline { animation: none; opacity: 1; }
  .brand__cup .brand__smoke { animation: none; opacity: .4; }
  .brand:hover .brand__cup { animation: none; }
}


/* ==========================================================================
   7. CURSOR & SCROLL PROGRESS
   ========================================================================== */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 3000;
  pointer-events: none; border-radius: 50%;
  mix-blend-mode: difference;
  opacity: 0;
}
.cursor {
  width: 34px; height: 34px;
  border: 1px solid rgba(243,234,223,.55);
  transition: width .3s var(--ease-out), height .3s var(--ease-out),
              background .3s var(--ease-out), opacity .3s;
}
.cursor.is-hover {
  width: 62px; height: 62px;
  background: rgba(243,234,223,.14);
  border-color: transparent;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--c-cream);
  transition: opacity .3s;
}
body.cursor-on .cursor, body.cursor-on .cursor-dot { opacity: 1; }

.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 1000;
  height: 2px; width: 0%;
  background: var(--grad-gold);
  box-shadow: 0 0 14px rgba(201,162,39,.7);
}


/* ==========================================================================
   8. NAVIGATION
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: height var(--t-mid) var(--ease),
              background var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease);
}
.nav.is-scrolled {
  height: 68px;
  background: color-mix(in srgb, var(--bg) 74%, transparent);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  backdrop-filter: blur(22px) saturate(1.4);
  border-bottom-color: var(--line);
  box-shadow: var(--sh-sm);
}
.nav.is-hidden { transform: translateY(-100%); transition: transform var(--t-mid) var(--ease); }

.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

/* Brand */
.brand { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.brand__mark {
  width: 40px; height: 40px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--accent);
  transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-mid) var(--ease);
}
.brand__mark svg { width: 24px; height: 24px; overflow: visible; }
.brand__cup .brand__cup-body,
.brand__cup .brand__cup-handle,
.brand__cup .brand__cup-saucer {
  fill: none; stroke: var(--accent); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke var(--t-fast) var(--ease);
}
.brand__cup .brand__cup-body { fill: rgba(201,162,39,.1); }
.brand__cup .brand__cup-saucer { stroke-width: 2.4; }
.brand__cup .brand__smoke {
  fill: none; stroke: var(--accent-lite); stroke-width: 1.7; stroke-linecap: round;
  stroke-dasharray: 16; stroke-dashoffset: 16; opacity: 0;
  animation: brand-smoke 3.2s var(--ease-in-out) infinite;
}
.brand__cup .brand__smoke--2 { animation-delay: 1.1s; }
.brand__cup .brand__smoke--3 { animation-delay: 2.2s; }
@keyframes brand-smoke {
  0%   { stroke-dashoffset: 16; opacity: 0; transform: translateY(0); }
  30%  { opacity: .65; }
  100% { stroke-dashoffset: -6; opacity: 0; transform: translateY(-3px); }
}
/* hover: šoljica oživi — blagi poskok/nagib + brži dim + zlatniji ton */
.brand:hover .brand__mark { box-shadow: 0 0 0 5px rgba(201,162,39,.1); }
.brand:hover .brand__cup { animation: brand-cup-bob 1.1s var(--ease-in-out) infinite; }
.brand:hover .brand__cup-body,
.brand:hover .brand__cup-handle,
.brand:hover .brand__cup-saucer { stroke: var(--accent-lite); }
.brand:hover .brand__smoke { animation-duration: 1.6s; }
@keyframes brand-cup-bob {
  0%,100% { transform: translateY(0) rotate(0deg); }
  30%     { transform: translateY(-2px) rotate(-4deg); }
  60%     { transform: translateY(0) rotate(3deg); }
}

.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong {
  font-family: var(--font-display);
  font-size: 1.16rem; font-weight: 600;
  letter-spacing: .16em; color: var(--text);
}
.brand__text em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: .58rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--accent-lite);
  margin-top: 3px;
}

/* Menu */
.nav__menu ul { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.2rem); }
.nav__menu-foot { display: none; }

.nav__link {
  position: relative;
  font-size: .92rem; font-weight: 400;
  color: var(--text-muted);
  padding: .4rem 0;
  transition: color var(--t-fast) var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--t-mid) var(--ease-out);
}
.nav__link:hover, .nav__link.is-active { color: var(--accent-lite); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__link.is-active { color: var(--accent-lite); }

/* Actions */
.nav__actions { display: flex; align-items: center; gap: .7rem; }

/* Pizza ikona (vodi na kontakt) — na mjestu gdje je bio theme toggle */
.nav__pizza {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--accent);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease-out), box-shadow var(--t-mid) var(--ease);
}
.nav__pizza svg { width: 22px; height: 22px; overflow: visible; }
.nav__pizza .pizza-slice {
  fill: rgba(201,162,39,.12); stroke: var(--accent); stroke-width: 1.7;
  stroke-linejoin: round; transition: fill var(--t-fast) var(--ease), stroke var(--t-fast) var(--ease);
}
.nav__pizza .pizza-crust { fill: none; stroke: var(--accent); stroke-width: 1.7; stroke-linecap: round; }
.nav__pizza .pizza-top {
  fill: var(--accent); stroke: none;
  transition: fill var(--t-fast) var(--ease), transform var(--t-mid) var(--ease-out);
  transform-origin: center;
}
/* hover: zlatnije, blagi "zavrtanj" i topping-i poskoče */
.nav__pizza:hover {
  color: var(--accent-lite);
  border-color: var(--accent);
  transform: rotate(-8deg) scale(1.05);
  box-shadow: 0 0 0 4px rgba(201,162,39,.1);
}
.nav__pizza:hover .pizza-slice { fill: rgba(231,200,106,.2); stroke: var(--accent-lite); }
.nav__pizza:hover .pizza-crust { stroke: var(--accent-lite); }
.nav__pizza:hover .pizza-top { fill: var(--c-ember); }
.nav__pizza:hover .pizza-top--1 { transform: translateY(-1.5px); }
.nav__pizza:hover .pizza-top--2 { transform: translateY(1.5px) translateX(-1px); }
.nav__pizza:hover .pizza-top--3 { transform: translateY(1.5px) translateX(1px); }

/* Burger */
.burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
}
.burger span {
  position: absolute; left: 50%; width: 17px; height: 1.6px;
  background: var(--text); border-radius: 2px;
  transform: translateX(-50%);
  transition: transform var(--t-mid) var(--ease-out), opacity var(--t-fast) var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 25px; }
.burger.is-open span:nth-child(1) { transform: translateX(-50%) translateY(5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: translateX(-50%) scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateX(-50%) translateY(-5px) rotate(-45deg); }


/* ==========================================================================
   9. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-block: calc(var(--nav-h) + 3rem) 7rem;
  overflow: hidden;
}
.hero__media { position: absolute; inset: -8% 0 -8%; z-index: 0; will-change: transform; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }

.hero__grade {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, var(--c-void) 4%, rgba(11,9,7,.86) 34%, rgba(11,9,7,.36) 66%, rgba(11,9,7,.66) 100%),
    var(--grad-warm);
}
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 40%, transparent 42%, rgba(11,9,7,.9) 100%);
}
/* Suptilni light sweep u pozadini — nizak opacity da se jedva nazire */
.hero__rays {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; overflow: hidden;
  mix-blend-mode: screen; opacity: .4;
}
.hero__rays .ray {
  position: absolute; top: -60%; left: 0;
  width: 20%; height: 220%;
  background: linear-gradient(90deg, transparent, rgba(231,200,106,.12) 48%, rgba(201,162,39,.18) 50%, rgba(231,200,106,.12) 52%, transparent);
  transform: rotate(18deg) translateX(-40vw);
  filter: blur(8px);
  animation: ray-sweep 15s var(--ease-in-out) infinite;
}
.ray--2 { animation-delay: -7s; width: 26%; opacity: .6; }
@keyframes ray-sweep {
  0%   { transform: rotate(18deg) translateX(-50vw); }
  100% { transform: rotate(18deg) translateX(150vw); }
}
/* Šoljica kafe sa dimom koji se diže */
.hero__coffee {
  position: absolute; right: 6%; bottom: 12%; z-index: 1;
  width: clamp(140px, 18vw, 240px);
  pointer-events: none;
  opacity: .9;
  animation: coffee-in 1.4s var(--ease-out) both;
}
@keyframes coffee-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: .9; transform: none; }
}
.hero__cup { width: 100%; height: auto; display: block; overflow: visible; }
.hero__cup path, .hero__cup ellipse { fill: none; stroke: var(--c-gold-lite); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.hero__cup .cup-body { fill: rgba(201,162,39,.08); }
.hero__cup .cup-rim { fill: rgba(201,162,39,.12); stroke-width: 2.6; }
.hero__cup .cup-saucer { stroke-width: 4; }

.hero__smoke {
  position: absolute; left: 50%; bottom: 60%;
  width: 60%; height: auto; transform: translateX(-46%);
  overflow: visible;
}
.hero__smoke .smoke {
  fill: none; stroke: rgba(231,200,106,.5); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 140; stroke-dashoffset: 140;
  opacity: 0;
  animation: smoke-rise 4.5s var(--ease-in-out) infinite;
}
.hero__smoke .smoke--2 { animation-delay: 1.2s; stroke-width: 3.4; }
.hero__smoke .smoke--3 { animation-delay: 2.4s; }
@keyframes smoke-rise {
  0%   { stroke-dashoffset: 140; opacity: 0; transform: translateY(0) scaleY(.9); }
  25%  { opacity: .55; }
  70%  { opacity: .35; }
  100% { stroke-dashoffset: -40; opacity: 0; transform: translateY(-14px) scaleY(1.1); }
}

@media (max-width: 720px) { .hero__coffee { opacity: .5; right: 2%; bottom: 8%; } }

/* Canvas zrna kafe — fiksiran preko cijele stranice.
   z-index ispod navigacije (900) ali iznad sadrzaja sekcija;
   screen blend + niska alpha znace da zrna ne smetaju citljivosti teksta. */
.page-beans {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 850; pointer-events: none;
  mix-blend-mode: screen;
}
@media (prefers-reduced-motion: reduce) {
  .aurora { animation: none; }
  .ray, .hero__smoke .smoke { animation: none; }
  .hero__coffee { animation: none; opacity: .8; }
  .page-beans { display: none; }
}

.hero__content { position: relative; z-index: 2; max-width: 900px; }

.hero__title { font-size: var(--fs-hero); margin-bottom: 1.7rem; font-weight: 300; line-height: .92; }
/* dovoljno donjeg prostora da descenderi (ž, j, đ) NIKAD ne budu odsjeceni;
   drugi red se jace podigne da vertikalni razmak bude tijesan */
.hero__title .line { display: block; overflow: hidden; padding-bottom: .3em; }
.hero__title .line:nth-child(2) { margin-top: -.34em; }
.hero__title .line > span {
  display: block;
  padding-bottom: .1em;
  transform: translateY(118%);
  animation: line-up 1.15s var(--ease-out) forwards;
  will-change: transform;
}
.hero__title .line:nth-child(1) > span { animation-delay: .15s; }
.hero__title .line:nth-child(2) > span { animation-delay: .3s; }
@keyframes line-up { to { transform: translateY(0); } }

.hero__sub { font-size: clamp(1.05rem, 1.7vw, 1.35rem); max-width: 54ch; color: var(--text-muted); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero__facts {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  margin-top: 3.4rem; padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}
.hero__facts li {
  display: flex; flex-direction: column; gap: .2rem;
  position: relative;
}
/* Zlatni vertikalni razdjelnik između stavki (osim prve) */
.hero__facts li + li::before {
  content: ""; position: absolute; left: calc(-1 * clamp(.7rem, 1.5vw, 1.4rem)); top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 62%;
  background: linear-gradient(180deg, transparent, var(--line-strong), transparent);
}
.hero__facts strong {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__facts span {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-dim);
}

/* BESPLATNA dostava — naglaseni fakt */
.fact-free__word {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem) !important;
  font-weight: 600;
  letter-spacing: .02em;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
  animation: free-glow 2.6s var(--ease-in-out) infinite;
}
@keyframes free-glow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(201,162,39,0)); }
  50%      { filter: drop-shadow(0 0 14px rgba(231,200,106,.55)); }
}


/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  color: var(--text-dim);
}
.scroll-cue__line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  position: relative; overflow: hidden;
}
.scroll-cue__line::after {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 40%;
  background: var(--c-cream);
  animation: cue-run 2s var(--ease-in-out) infinite;
}
@keyframes cue-run {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(260%); }
}
.scroll-cue__text {
  font-family: var(--font-mono);
  font-size: .62rem; letter-spacing: .28em; text-transform: uppercase;
  transition: color var(--t-fast) var(--ease);
}
.scroll-cue:hover .scroll-cue__text { color: var(--accent-lite); }


/* ==========================================================================
   10. ABOUT PREVIEW
   ========================================================================== */
.about-preview { background: var(--bg); }

.about-preview__media { position: relative; padding-bottom: 3rem; padding-right: 3rem; }
.frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--line);
}
.frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter var(--t-slow) var(--ease);
  filter: saturate(1.02);
}
.frame:hover img { transform: scale(1.06); }
.frame--offset {
  position: absolute; right: 0; bottom: 0;
  width: 48%; aspect-ratio: 1;
  border: 6px solid var(--bg);
  border-radius: var(--r-md);
  animation: bob 7s var(--ease-in-out) infinite;
}
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}

.stat-chip {
  position: absolute; top: 1.6rem; left: -1rem;
  display: flex; flex-direction: column;
  padding: .9rem 1.3rem;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
}
.stat-chip strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent-lite);
}
.stat-chip span {
  font-family: var(--font-mono);
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-dim);
}


/* ==========================================================================
   11. SERVICES
   ========================================================================== */
.services {
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(201,162,39,.06), transparent 70%),
    var(--bg-alt);
  position: relative;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.15rem;
}

.card {
  position: relative;
  padding: 2.1rem 1.7rem 1.9rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-mid) var(--ease-out),
              border-color var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease-out),
              background var(--t-mid) var(--ease);
  will-change: transform;
  transform-style: preserve-3d;
}
.card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(150deg, rgba(201,162,39,.12), transparent 58%);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
}
.card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--sh-md);
  background: var(--surface-2);
}
.card:hover::before { opacity: 1; }

/* Cursor-follow glow */
.card__glow {
  position: absolute; width: 260px; height: 260px; z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.20), transparent 66%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity var(--t-mid) var(--ease);
  pointer-events: none;
}
.card:hover .card__glow { opacity: 1; }

.card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(201,162,39,.1);
  border: 1px solid var(--line);
  color: var(--accent-lite);
  margin-bottom: 1.4rem;
  transition: transform var(--t-mid) var(--ease-out),
              background var(--t-mid) var(--ease),
              color var(--t-mid) var(--ease);
}
.card__icon svg { width: 24px; height: 24px; }
.card:hover .card__icon {
  transform: translateY(-4px) rotate(-6deg) scale(1.06);
  background: var(--grad-gold);
  color: var(--on-accent);
}

.card h3 {
  font-size: 1.22rem;
  margin-bottom: .55rem;
  color: var(--text);
  letter-spacing: -.01em;
}
.card p { font-size: var(--fs-sm); line-height: 1.62; }


/* ==========================================================================
   12. DELIVERY
   ========================================================================== */
.delivery {
  position: relative;
  overflow: hidden;
  background: var(--c-coffee);
  color: var(--c-cream);
}
.delivery__glow {
  position: absolute; top: -30%; right: -10%;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.24), transparent 66%);
  filter: blur(50px);
  animation: float-a 18s var(--ease-in-out) infinite;
}
.delivery__road {
  position: absolute; left: 0; right: 0; bottom: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg,
    rgba(201,162,39,.42) 0 34px,
    transparent 34px 68px);
  animation: road 1.4s linear infinite;
  opacity: .5;
}
@keyframes road { to { background-position-x: -68px; } }

.delivery .eyebrow--light { color: var(--c-gold-lite); }
.delivery .h2 { color: var(--c-cream); }
.delivery .lead { color: rgba(243,234,223,.72); }

.delivery__meta {
  display: flex; flex-wrap: wrap; gap: 2.2rem;
  margin-top: 2.6rem; padding-top: 1.8rem;
  border-top: 1px solid rgba(200,169,126,.2);
}
.delivery__meta li { display: flex; flex-direction: column; }
.delivery__meta strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--c-gold-lite);
}
.delivery__meta span {
  font-family: var(--font-mono);
  font-size: var(--fs-xs); letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(243,234,223,.45);
}

.delivery__art { position: relative; display: grid; place-items: center; }
.scooter { width: 100%; max-width: 480px; }
.scooter svg { width: 100%; height: auto; overflow: visible; }

/* Cijeli skuter: dolazi slijeva kad sekcija udje u vidokrug, pa poskakuje kao na cesti */
.scooter__ride {
  transform: translateX(-120%);
  transform-box: view-box;
}
.delivery.in-view .scooter__ride {
  animation: ride-in 1s var(--ease-out) forwards, ride-bob 1.1s var(--ease-in-out) 1s infinite;
}
@keyframes ride-in {
  0%   { transform: translateX(-120%); }
  70%  { transform: translateX(6%); }   /* blagi prebacaj — dojam kocenja */
  100% { transform: translateX(0); }
}
@keyframes ride-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-3px) rotate(-.6deg); }
  50%      { transform: translateY(0) rotate(0deg); }
  75%      { transform: translateY(-2px) rotate(.5deg); }
}

.scooter .wheel {
  stroke: var(--c-gold-lite); stroke-width: 3; fill: none;
  transform-origin: center;
  transform-box: fill-box;
  animation: spin 1.6s linear infinite;
  stroke-dasharray: 26 12;
}
@keyframes spin { to { transform: rotate(360deg); } }
.scooter .frame-l { stroke: var(--c-beige); stroke-width: 3; }
.scooter .box {
  stroke: var(--c-gold); stroke-width: 3;
  fill: rgba(201,162,39,.1);
  animation: bob 2.6s var(--ease-in-out) infinite;
  transform-box: fill-box; transform-origin: center;
}
.scooter .steam-l {
  stroke: var(--c-gold-lite); stroke-width: 2; opacity: .7;
  animation: steam-sway 2.4s var(--ease-in-out) infinite;
}
@keyframes steam-sway {
  0%,100% { opacity: .25; transform: translateY(0); }
  50%     { opacity: .85; transform: translateY(-6px); }
}

/* Oblacici ispuha iza skutera — vide se tek kad je stigao */
.scooter .puff {
  fill: rgba(200,169,126,.5);
  opacity: 0;
  transform-box: fill-box; transform-origin: center;
}
.delivery.in-view .puff--1 { animation: puff 1.8s var(--ease-out) 1.1s infinite; }
.delivery.in-view .puff--2 { animation: puff 1.8s var(--ease-out) 1.5s infinite; }
.delivery.in-view .puff--3 { animation: puff 1.8s var(--ease-out) 1.9s infinite; }
@keyframes puff {
  0%   { opacity: 0;  transform: translate(0,0) scale(.5); }
  30%  { opacity: .6; }
  100% { opacity: 0;  transform: translate(-46px,-14px) scale(1.6); }
}

@media (prefers-reduced-motion: reduce) {
  .scooter__ride { transform: none; animation: none; }
  .scooter .wheel, .scooter .box, .scooter .puff { animation: none; }
  .delivery__road { animation: none; }
  .historija__glow { animation: none; opacity: .3; }
}

/* ==========================================================================
   HISTORIJA — timeline
   ========================================================================== */
.historija { position: relative; overflow: hidden; }
.historija__glow {
  position: absolute; top: 20%; left: 50%;
  width: 70vw; max-width: 900px; height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(231,200,106,.16), rgba(201,162,39,.06) 45%, transparent 70%);
  pointer-events: none; z-index: 0;
  opacity: .35;
  animation: hist-glow 7s var(--ease-in-out) infinite;
}
@keyframes hist-glow {
  0%, 100% { opacity: .28; transform: translateX(-50%) scale(1); }
  50%      { opacity: .7;  transform: translateX(-50%) scale(1.06); }
}
.historija .container { position: relative; z-index: 1; }
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 1rem 0; }
.timeline__line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--line-strong) 12%, var(--line-strong) 88%, transparent);
}
.tl-item {
  position: relative; width: 50%;
  padding: 1.4rem 2.6rem; box-sizing: border-box;
}
.tl-item--left  { left: 0; text-align: right; }
.tl-item--right { left: 50%; text-align: left; }
.tl-item__icon {
  position: absolute; top: 1.8rem;
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  box-shadow: var(--sh-gold);
  z-index: 2;
}
.tl-item--left  .tl-item__icon { right: -24px; }
.tl-item--right .tl-item__icon { left: -24px; }
.tl-item__icon svg {
  width: 24px; height: 24px; fill: none;
  stroke: var(--accent); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.tl-item__body { padding: 1.4rem 1.6rem; border-radius: var(--r-md); }
.tl-item__year {
  display: inline-block; font-family: var(--font-mono);
  font-size: var(--fs-xs); letter-spacing: .1em;
  color: var(--accent-lite); margin-bottom: .5rem;
}
.tl-item__body h3 { font-family: var(--font-display); font-weight: 500; margin-bottom: .5rem; font-size: 1.3rem; }
.tl-item__body p { color: var(--text-muted); font-size: .96rem; }

@media (max-width: 720px) {
  .timeline__line { left: 22px; }
  .tl-item, .tl-item--left, .tl-item--right {
    width: 100%; left: 0; text-align: left; padding: 1rem 0 1rem 3.4rem;
  }
  .tl-item--left .tl-item__icon,
  .tl-item--right .tl-item__icon { left: -2px; right: auto; top: 1.2rem; }
}

.delivery__badge {
  position: absolute; bottom: 8%; right: 4%;
  display: flex; align-items: center; gap: .55rem;
  padding: .6rem 1.05rem;
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: var(--fs-xs); letter-spacing: .08em;
  color: var(--c-cream);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,169,126,.28);
}
.dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.7);
  animation: pulse-dot 2s var(--ease-out) infinite;
}


/* ==========================================================================
   13. NEWS
   ========================================================================== */
.news { padding-block: clamp(3.5rem, 6vw, 6rem); }

.news-card {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3.4rem);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease-out), transform var(--t-mid) var(--ease-out);
}
.news-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(201,162,39,.1), transparent 55%);
  opacity: 0; transition: opacity var(--t-mid) var(--ease);
  pointer-events: none;
}
.news-card:hover { border-color: var(--accent); box-shadow: var(--sh-md); transform: translateY(-4px); }
.news-card:hover::after { opacity: 1; }

.badge-new {
  position: absolute; top: 1.5rem; right: 1.5rem;
  padding: .35rem .85rem;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
  color: var(--on-accent);
  font-family: var(--font-mono);
  font-size: .62rem; font-weight: 500;
  letter-spacing: .18em;
  box-shadow: 0 0 0 0 rgba(201,162,39,.6);
  animation: pulse-badge 2.4s var(--ease-out) infinite;
}
@keyframes pulse-badge {
  0%   { box-shadow: 0 0 0 0 rgba(201,162,39,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(201,162,39,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,162,39,0); }
}

.news-card__inner {
  display: flex; align-items: center; gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.news-card__clock {
  width: 92px; height: 92px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(201,162,39,.08);
  border: 1px solid var(--line);
  color: var(--accent-lite);
}
.news-card__clock svg { width: 46px; height: 46px; }
.news-card__clock .hand-h {
  transform-origin: 12px 12px;
  animation: spin 12s linear infinite;
}
.news-card__clock .hand-m {
  transform-origin: 12px 12px;
  animation: spin 3s linear infinite;
}
.news-card .h3 { margin-bottom: .6rem; }


/* ==========================================================================
   14. GALLERY & LIGHTBOX
   ========================================================================== */
.gallery { background: var(--bg-alt); }

.masonry {
  column-count: 3;
  column-gap: 1.1rem;
}
.ph {
  position: relative;
  break-inside: avoid;
  margin-bottom: 1.1rem;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t-mid) var(--ease-out), transform var(--t-mid) var(--ease-out);
}
.ph img {
  width: 100%;
  transition: transform 1.1s var(--ease-out), filter var(--t-mid) var(--ease);
  filter: saturate(.94) brightness(.92);
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,9,7,.86) 0%, rgba(11,9,7,.06) 52%, transparent);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
}
.ph:hover, .ph:focus-visible { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.ph:hover img, .ph:focus-visible img { transform: scale(1.09); filter: saturate(1.12) brightness(1); }
.ph:hover::after, .ph:focus-visible::after { opacity: 1; }

.ph figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.2rem 1.3rem;
  transform: translateY(12px);
  opacity: 0;
  transition: transform var(--t-mid) var(--ease-out), opacity var(--t-mid) var(--ease);
}
.ph figcaption span {
  font-family: var(--font-display);
  font-size: 1.1rem; font-style: italic;
  color: var(--c-cream);
}
.ph:hover figcaption, .ph:focus-visible figcaption { transform: translateY(0); opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 3500;
  display: grid; place-items: center;
  background: rgba(6,5,4,.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 4rem 1.5rem;
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  width: auto;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  transform: scale(.94);
  transition: transform var(--t-mid) var(--ease-out);
}
.lightbox.is-open img { transform: scale(1); }

.lightbox__close {
  position: absolute; top: 1.4rem; right: 1.6rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(243,234,223,.22);
  color: #F3EADF;
  font-size: 1.8rem; line-height: 1;
  display: grid; place-items: center;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease-out);
}
.lightbox__close:hover { background: rgba(255,255,255,.1); transform: rotate(90deg); }

.lightbox__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(243,234,223,.2);
  color: #F3EADF;
  font-size: 2rem; line-height: 1;
  display: grid; place-items: center;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.lightbox__arrow:hover { background: rgba(255,255,255,.1); border-color: var(--c-gold); }
.lightbox__arrow--prev { left: 1.5rem; }
.lightbox__arrow--next { right: 1.5rem; }


/* ==========================================================================
   15. TESTIMONIALS SLIDER
   ========================================================================== */
.testi { background: var(--bg); overflow: hidden; }

.slider { position: relative; }
.slider__track {
  display: flex;
  gap: 1.2rem;
  transition: transform .7s var(--ease-out);
  will-change: transform;
}
.quote {
  flex: 0 0 calc((100% - 2.4rem) / 3);
  padding: 2.2rem 2rem;
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: border-color var(--t-mid) var(--ease), transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease-out);
}
.quote:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--sh-md); }

.stars { color: var(--accent); letter-spacing: .22em; font-size: .95rem; }

.quote blockquote {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.56;
  color: var(--text);
  flex: 1;
}
.quote blockquote::before { content: "“"; color: var(--accent); margin-right: 2px; }
.quote blockquote::after  { content: "”"; color: var(--accent); margin-left: 2px; }

.quote footer {
  display: flex; flex-direction: column;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.quote footer strong { font-weight: 500; font-size: .95rem; color: var(--text); }
.quote footer span {
  font-family: var(--font-mono);
  font-size: var(--fs-xs); letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-dim);
}

.slider__nav {
  display: flex; align-items: center; justify-content: center; gap: 1.3rem;
  margin-top: 2.6rem;
}
.slider__btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text-muted);
  display: grid; place-items: center;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease-out);
}
.slider__btn svg { width: 20px; height: 20px; }
.slider__btn:hover {
  color: var(--on-accent);
  background: var(--grad-gold);
  border-color: transparent;
  transform: scale(1.08);
}
.slider__btn:disabled { opacity: .3; pointer-events: none; }

.slider__dots { display: flex; gap: .5rem; }
.slider__dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: width var(--t-mid) var(--ease-out), background var(--t-fast) var(--ease);
}
.slider__dots button.is-active {
  width: 26px;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
}


/* ==========================================================================
   16. CTA
   ========================================================================== */
.cta {
  position: relative;
  padding-block: clamp(6rem, 12vw, 11rem);
  overflow: hidden;
  text-align: center;
}
.cta__bg { position: absolute; inset: -10% 0; z-index: 0; will-change: transform; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(11,9,7,.82) 42%, var(--bg) 100%);
}
.cta__inner { position: relative; z-index: 2; max-width: 820px; margin-inline: auto; }
.cta__inner .lead { margin: 1.4rem auto 0; }
.cta__actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-top: 2.6rem;
}


/* ==========================================================================
   17. FOOTER & FAB
   ========================================================================== */
.footer {
  position: relative;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px;
  background-image:
    linear-gradient(135deg, var(--accent) 25%, transparent 25%),
    linear-gradient(225deg, var(--accent) 25%, transparent 25%);
  background-size: 16px 16px;
  opacity: .14;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3.5rem;
}
.footer__brand > p {
  margin: 1.3rem 0 1.7rem;
  font-size: var(--fs-sm);
  max-width: 34ch;
}
.brand--footer .brand__mark { width: 44px; height: 44px; }

.socials { display: flex; gap: .65rem; }
.social {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text-muted);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
              transform var(--t-mid) var(--ease-out), background var(--t-mid) var(--ease);
}
.social svg { width: 19px; height: 19px; }
.social:hover {
  color: var(--on-accent);
  background: var(--grad-gold);
  border-color: transparent;
  transform: translateY(-4px) rotate(-8deg);
}

.footer__col h3 {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-lite);
  margin-bottom: 1.3rem;
}
.footer__col ul { display: grid; gap: .75rem; }
.footer__col a {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  position: relative;
  display: inline-block;
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease-out);
}
.footer__col a:hover { color: var(--accent-lite); transform: translateX(5px); }
.footer__phone {
  font-family: var(--font-mono) !important;
  font-size: 1.02rem !important;
  color: var(--text) !important;
  letter-spacing: .03em;
}
.footer__phone:hover { color: var(--accent-lite) !important; }

.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: var(--fs-sm);
  color: var(--text-dim);
  padding-bottom: .6rem;
  border-bottom: 1px dashed var(--line);
}
.hours strong { color: var(--text-muted); font-weight: 400; font-family: var(--font-mono); font-size: .8rem; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  padding-block: 1.6rem;
  border-top: 1px solid var(--line);
}
.footer__bottom p { font-size: var(--fs-xs); color: var(--text-dim); }
.footer__made { font-family: var(--font-mono); letter-spacing: .06em; }

/* FAB */
.fab {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 950;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--on-accent);
  box-shadow: var(--sh-gold);
  transform: scale(0) rotate(-45deg);
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease);
}
.fab.is-visible { transform: scale(1) rotate(0); }
.fab:hover { box-shadow: 0 20px 50px -10px rgba(201,162,39,.72); transform: scale(1.09) rotate(0); }
.fab svg { width: 24px; height: 24px; stroke-width: 1.8; }
.fab__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--accent);
  animation: ring-out 2.4s var(--ease-out) infinite;
}


/* ==========================================================================
   18. PAGE HEADER (inner pages)
   ========================================================================== */
.page-head {
  position: relative;
  padding-block: calc(var(--nav-h) + 5.5rem) clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-head__bg { position: absolute; inset: -10% 0; z-index: 0; }
.page-head__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-head__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,9,7,.92), rgba(11,9,7,.72) 40%, var(--bg));
}
.page-head__inner { position: relative; z-index: 2; max-width: 780px; }
.page-head .lead { margin-top: 1.2rem; }

.crumbs {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 1.8rem;
}
.crumbs a { transition: color var(--t-fast) var(--ease); }
.crumbs a:hover { color: var(--accent-lite); }
.crumbs span[aria-current] { color: var(--accent-lite); }


/* ==========================================================================
   19. ABOUT PAGE
   ========================================================================== */
.story .grid-2 { align-items: start; }
.story__sticky { position: sticky; top: calc(var(--nav-h) + 2rem); }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
  margin-top: 2.5rem;
}
.pillar {
  padding: 1.8rem 1.6rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color var(--t-mid) var(--ease), transform var(--t-mid) var(--ease-out);
}
.pillar:hover { border-color: var(--accent); transform: translateY(-4px); }
.pillar h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.pillar p { font-size: var(--fs-sm); }
.pillar__num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: .2em;
  color: var(--accent);
  display: block;
  margin-bottom: .9rem;
}

/* Stats */
.stats { background: var(--c-coffee); color: var(--c-cream); overflow: hidden; position: relative; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat { padding: 1rem; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: .8rem;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(243,234,223,.5);
}

/* Timeline */
.timeline { position: relative; max-width: 860px; margin-inline: auto; padding-left: 2.4rem; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), var(--line), transparent);
}
.tl-item { position: relative; padding-bottom: 3rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -2.4rem; top: 8px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 12%, transparent);
  transition: background var(--t-mid) var(--ease), transform var(--t-mid) var(--ease-out);
}
.tl-item:hover::before { background: var(--accent); transform: scale(1.2); }
.tl-year {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: .2em;
  color: var(--accent-lite);
  display: block;
  margin-bottom: .5rem;
}
.tl-item h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.tl-item p { font-size: var(--fs-sm); max-width: 60ch; }


/* ==========================================================================
   20. MENU PAGE
   ========================================================================== */
.menu-tools {
  position: sticky;
  top: var(--nav-h);
  z-index: 500;
  padding-block: 1.1rem;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.menu-tools__inner {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
}

.search {
  position: relative;
  flex: 1 1 260px;
  max-width: 340px;
}
.search svg {
  position: absolute; left: 1rem; top: 50%;
  transform: translateY(-50%);
  width: 17px; height: 17px;
  fill: none;
  stroke: var(--text-dim);
  stroke-width: 2;
  stroke-linecap: round;
  color: var(--text-dim);
  pointer-events: none;
  z-index: 2;
}
.search input {
  width: 100%;
  padding: .8rem 1rem .8rem 2.7rem;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: var(--fs-sm);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.search input::placeholder { color: var(--text-dim); }
.search input:focus { outline: none; border-color: var(--accent); background: var(--surface-2); }

.filters {
  display: flex; gap: .5rem;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  flex: 1;
}
.filters::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0;
  padding: .62rem 1.15rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-muted);
  font-size: .82rem;
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease-out);
}
.chip:hover { color: var(--accent-lite); border-color: var(--accent); transform: translateY(-2px); }
.chip.is-active {
  background: var(--grad-gold);
  color: var(--on-accent);
  border-color: transparent;
  font-weight: 500;
}

.menu-grid {
  display: block;
}

.dish {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform var(--t-mid) var(--ease-out),
              border-color var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease-out),
              opacity .35s var(--ease), scale .35s var(--ease);
}
.dish.is-hidden { display: none; }
.dish:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--sh-lg); }

.dish__img { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.dish__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.96) brightness(.94);
  transition: transform 1.1s var(--ease-out), filter var(--t-mid) var(--ease);
}
.dish:hover .dish__img img { transform: scale(1.09); filter: saturate(1.14) brightness(1); }
.dish__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,9,7,.6), transparent 55%);
}

.dish__price {
  position: absolute; right: .9rem; bottom: .9rem; z-index: 2;
  padding: .42rem .9rem;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
  color: var(--on-accent);
  font-family: var(--font-mono);
  font-size: .82rem; font-weight: 500;
  box-shadow: var(--sh-sm);
  transition: transform var(--t-mid) var(--ease-out);
}
.dish:hover .dish__price { transform: scale(1.07) translateY(-2px); }

.dish__tag {
  position: absolute; left: .9rem; top: .9rem; z-index: 2;
  padding: .3rem .7rem;
  border-radius: var(--r-pill);
  background: rgba(11,9,7,.66);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(243,234,223,.16);
  color: var(--c-cream);
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.dish__body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.dish__body h3 { font-size: 1.24rem; margin-bottom: .45rem; }
.dish__body p { font-size: var(--fs-sm); line-height: 1.58; flex: 1; }
.dish__meta {
  display: flex; align-items: center; gap: .5rem;
  margin-top: 1.1rem; padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.menu-cat {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 3.5rem 0 1.8rem;
  display: flex; align-items: center; gap: 1.2rem;
}
.menu-cat:first-of-type { margin-top: 0; }
.menu-cat::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(to right, var(--line-strong), transparent);
}
.menu-cat.is-hidden { display: none; }

.no-results {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-dim);
}
.no-results.is-hidden { display: none; }
.no-results strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--text); margin-bottom: .5rem; }


/* ==========================================================================
   21. GAMES PAGE
   ========================================================================== */
.arcade {
  position: relative;
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(201,162,39,.08), transparent 70%),
    var(--bg);
}
.arcade__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent);
  mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent);
  pointer-events: none;
}

.game-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--bg-elev);
  box-shadow: var(--sh-lg);
  transition: box-shadow var(--t-slow) var(--ease-out);
}
.game-hero:hover { box-shadow: 0 50px 110px -30px rgba(201,162,39,.28), var(--sh-lg); }

.game-hero__art {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: linear-gradient(150deg, #1E140C, #0B0907);
}
.game-hero__art img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.game-hero:hover .game-hero__art img { transform: scale(1.07); }
.game-hero__art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 50%, var(--bg-elev) 100%),
              linear-gradient(0deg, rgba(11,9,7,.5), transparent 60%);
}
/* Scanline overlay for arcade feel */
.scanlines {
  position: absolute; inset: 0; z-index: 2;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,.16) 0 1px,
    transparent 1px 3px
  );
  opacity: .5;
  pointer-events: none;
  animation: scan 8s linear infinite;
}
@keyframes scan { to { background-position-y: 60px; } }

.game-hero__body {
  padding: clamp(2rem, 4vw, 3.4rem);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 3;
}
.game-hero__body h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.game-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  align-self: flex-start;
  padding: .35rem .85rem;
  border-radius: var(--r-pill);
  background: rgba(201,162,39,.14);
  border: 1px solid var(--line-strong);
  color: var(--accent-lite);
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.game-specs {
  display: flex; flex-wrap: wrap; gap: 1.8rem;
  margin: 2rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.game-specs li { display: flex; flex-direction: column; }
.game-specs strong { font-family: var(--font-mono); font-size: .95rem; color: var(--accent-lite); }
.game-specs span {
  font-family: var(--font-mono);
  font-size: .6rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-dim);
}

.btn--play {
  background: var(--grad-gold);
  color: var(--on-accent);
  font-weight: 600;
  padding: 1.15rem 2.2rem;
  align-self: flex-start;
  box-shadow: var(--sh-gold);
}
.btn--play svg { width: 20px; height: 20px; fill: currentColor; stroke: none; }
.btn--play:hover svg { transform: scale(1.2); }

/* Game slots */
.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.15rem;
  margin-top: 1.15rem;
}
.slot {
  position: relative;
  padding: 2.6rem 1.6rem;
  border-radius: var(--r-lg);
  border: 1px dashed var(--line-strong);
  background: var(--surface);
  text-align: center;
  overflow: hidden;
  transition: border-color var(--t-mid) var(--ease), transform var(--t-mid) var(--ease-out), background var(--t-mid) var(--ease);
}
.slot:hover { border-color: var(--accent); transform: translateY(-4px); background: var(--surface-2); }
.slot__icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.2rem;
  display: grid; place-items: center;
  border-radius: 16px;
  background: rgba(201,162,39,.08);
  border: 1px solid var(--line);
  color: var(--accent);
  transition: transform var(--t-mid) var(--ease-out);
}
.slot:hover .slot__icon { transform: translateY(-4px) scale(1.06); }
.slot__icon svg { width: 26px; height: 26px; }
.slot h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.slot p { font-size: var(--fs-sm); }
.slot__soon {
  display: inline-block;
  margin-top: 1.1rem;
  padding: .28rem .8rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Game frame modal */
.game-frame {
  position: fixed; inset: 0; z-index: 3500;
  display: grid; place-items: center;
  background: rgba(6,5,4,.95);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 4rem 1.5rem;
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
}
.game-frame[hidden] { display: none; }
.game-frame.is-open { opacity: 1; }
.game-frame__box {
  width: min(960px, 100%);
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-strong);
  background: var(--bg-elev);
  display: grid; place-items: center;
  text-align: center;
  padding: 2rem;
  transform: scale(.94);
  transition: transform var(--t-mid) var(--ease-out);
  overflow: hidden;
}
.game-frame.is-open .game-frame__box { transform: scale(1); }
.game-frame__box h3 { font-size: 1.8rem; margin-bottom: .8rem; }
.game-frame__box p { max-width: 42ch; margin-inline: auto; }


/* ==========================================================================
   22. CONTACT PAGE
   ========================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.form { display: grid; gap: 1.1rem; }
.field { position: relative; display: flex; flex-direction: column; gap: .5rem; }
.field label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: .95rem 1.1rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: .95rem;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  resize: vertical;
}
.field textarea { min-height: 140px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 12%, transparent);
}
.field.has-error input, .field.has-error textarea { border-color: #E06C4F; }
.field__error {
  font-size: var(--fs-xs);
  color: #E06C4F;
  min-height: 1em;
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.btn--submit {
  background: var(--grad-gold);
  color: var(--on-accent);
  font-weight: 600;
  padding: 1.1rem 2rem;
  justify-self: start;
  min-width: 200px;
}
.btn--submit.is-sending { pointer-events: none; }
.btn--submit .spinner {
  width: 17px; height: 17px;
  border-radius: 50%;
  border: 2px solid rgba(23,18,10,.28);
  border-top-color: var(--on-accent);
  animation: spin .7s linear infinite;
  display: none;
}
.btn--submit.is-sending .spinner { display: block; }
.btn--submit.is-sending .btn__label { opacity: .6; }

.form__status {
  margin-top: .8rem;
  font-size: var(--fs-sm);
  color: var(--accent-lite);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--t-mid) var(--ease), transform var(--t-mid) var(--ease-out);
}
.form__status.is-shown { opacity: 1; transform: translateY(0); }

.info-cards { display: grid; gap: 1rem; }
.info-card {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding: 1.5rem 1.6rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color var(--t-mid) var(--ease), transform var(--t-mid) var(--ease-out);
}
.info-card:hover { border-color: var(--accent); transform: translateX(5px); }
.info-card__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(201,162,39,.1);
  border: 1px solid var(--line);
  color: var(--accent-lite);
}
.info-card__icon svg { width: 20px; height: 20px; }
.info-card h3 {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: .35rem;
}
.info-card strong { font-size: 1.05rem; font-weight: 400; color: var(--text); }
.info-card a:hover { color: var(--accent-lite); }
.info-card p { font-size: var(--fs-sm); margin-top: .2rem; }

.map {
  position: relative;
  margin-top: 1rem;
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(45deg, rgba(200,169,126,.04) 0 12px, transparent 12px 24px),
    var(--bg-elev);
  display: grid; place-items: center;
  text-align: center;
}
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.5) contrast(1.05); }
.map__ph { padding: 2rem; }
.map__ph svg { width: 40px; height: 40px; color: var(--accent); margin: 0 auto 1rem; }
.map__ph p { font-size: var(--fs-sm); }


/* ==========================================================================
   23. ANIMATIONS & REVEALS
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transition: opacity .95s var(--ease-out), transform .95s var(--ease-out);
  will-change: opacity, transform;
  /* Sigurnosni fallback: ako JS ne proradi, sadržaj se ipak pojavi (ne ostaje skriven zauvijek). */
  animation: odiseja-reveal-safety 0s linear 2.5s forwards;
}
[data-reveal="up"]    { transform: translateY(44px); }
[data-reveal="left"]  { transform: translateX(-52px); }
[data-reveal="right"] { transform: translateX(52px); }
[data-reveal="fade"]  { transform: none; }
[data-reveal="zoom"]  { transform: scale(.94); }

[data-reveal].is-in {
  opacity: 1;
  transform: none;
  animation: none;
}
/* Kad JS radi, on preuzima kontrolu preko .is-in i gasi safety animaciju. */
.js-ready [data-reveal]:not(.is-in) { animation: none; }
.js-ready [data-reveal] { opacity: 0; }
.js-ready [data-reveal].is-in { opacity: 1; }

@keyframes odiseja-reveal-safety {
  to { opacity: 1; transform: none; }
}

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


/* ==========================================================================
   24. RESPONSIVE
   ========================================================================== */

/* ≥1920px — 4K comfort */
@media (min-width: 1800px) {
  :root { --maxw: 1520px; --fs-body: 1.06rem; }
}

/* ≤1200px */
@media (max-width: 1200px) {
  .quote { flex: 0 0 calc((100% - 1.2rem) / 2); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__col:last-child { grid-column: 2 / -1; }
}

/* ≤1024px — tablet */
@media (max-width: 1024px) {
  :root { --nav-h: 72px; }

  .nav__cta { display: none; }
  .burger { display: block; }

  /* Mobile menu panel */
  .nav__menu {
    position: fixed;
    top: 0; right: 0;
    width: min(400px, 88vw);
    height: 100svh;
    padding: calc(var(--nav-h) + 2.5rem) 2rem 2.5rem;
    background: color-mix(in srgb, var(--bg-alt) 96%, transparent);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
    backdrop-filter: blur(28px) saturate(1.4);
    border-left: 1px solid var(--line);
    box-shadow: -30px 0 80px rgba(0,0,0,.5);
    transform: translateX(100%);
    transition: transform .55s var(--ease-out);
    display: flex; flex-direction: column; justify-content: space-between;
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateX(0); }

  .nav__menu ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__menu li { border-bottom: 1px solid var(--line); }
  .nav__menu li:first-child { border-top: 1px solid var(--line); }
  .nav__link {
    display: block;
    padding: 1.15rem .2rem;
    font-family: var(--font-display);
    font-size: 1.45rem;
    opacity: 0;
    transform: translateX(28px);
  }
  .nav__menu.is-open .nav__link {
    animation: menu-in .5s var(--ease-out) forwards;
  }
  .nav__menu.is-open li:nth-child(1) .nav__link { animation-delay: .1s; }
  .nav__menu.is-open li:nth-child(2) .nav__link { animation-delay: .17s; }
  .nav__menu.is-open li:nth-child(3) .nav__link { animation-delay: .24s; }
  .nav__menu.is-open li:nth-child(4) .nav__link { animation-delay: .31s; }
  .nav__menu.is-open li:nth-child(5) .nav__link { animation-delay: .38s; }
  @keyframes menu-in { to { opacity: 1; transform: translateX(0); } }
  .nav__link::after { display: none; }

  .nav__menu-foot {
    display: block;
    margin-top: 2rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--line);
  }
  .nav__phone {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    color: var(--accent-lite);
    letter-spacing: .04em;
  }

  /* Nav backdrop */
  .nav-backdrop {
    position: fixed; inset: 0; z-index: calc(var(--z-nav) - 1);
    background: rgba(6,5,4,.6);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    opacity: 0; visibility: hidden;
    transition: opacity var(--t-mid) var(--ease), visibility var(--t-mid);
  }
  .nav-backdrop.is-shown { opacity: 1; visibility: visible; }

  /* Layout */
  .grid-2 { grid-template-columns: 1fr; }
  .about-preview__media { order: -1; padding-right: 2rem; }
  .story__sticky { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
  .game-hero { grid-template-columns: 1fr; }
  .game-hero__art { min-height: 280px; }
  .game-hero__art::after { background: linear-gradient(180deg, transparent 40%, var(--bg-elev) 100%); }
  .masonry { column-count: 2; }
  .cards { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

  /* Hide custom cursor on touch */
  .cursor, .cursor-dot { display: none; }
}

/* ≤768px — mobile large */
@media (max-width: 768px) {
  :root { --space-sec: 4.5rem; }

  .hero { min-height: 92svh; }
  .hero__facts { gap: 1.2rem 1.8rem; }
  .hero__facts li + li::before { display: none; }
  .hero__actions .btn { flex: 1 1 100%; }

  .quote { flex: 0 0 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__col:last-child { grid-column: auto; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .news-card__inner { flex-direction: column; align-items: flex-start; }
  .badge-new { top: 1rem; right: 1rem; }

  .form__row { grid-template-columns: 1fr; }
  .btn--submit { justify-self: stretch; width: 100%; }

  .delivery__art { order: -1; }
  .delivery__meta { gap: 1.4rem; }
  .delivery__badge { position: static; margin-top: 1.4rem; justify-self: center; }

  .lightbox__arrow--prev { left: .5rem; }
  .lightbox__arrow--next { right: .5rem; }
  .lightbox { padding: 4.5rem .8rem; }

  .timeline { padding-left: 1.8rem; }
  .tl-item::before { left: -1.8rem; }
}

/* ≤480px — mobile */
@media (max-width: 480px) {
  :root { --pad-x: 1.15rem; }

  .masonry { column-count: 1; }
  .cards { grid-template-columns: 1fr; }
  .slots { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .brand__text em { display: none; }
  .fab { right: 1rem; bottom: 1rem; width: 52px; height: 52px; }
  .about-preview__media { padding-right: 1.2rem; padding-bottom: 2rem; }
  .stat-chip { left: 0; top: 1rem; padding: .7rem 1rem; }
}

/* ≤320px safeguard */
@media (max-width: 340px) {
  :root { --pad-x: .9rem; }
  .btn { padding: .9rem 1.3rem; font-size: .88rem; }
}


/* ==========================================================================
   25. REDUCED MOTION & PRINT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__title .line > span { transform: none; }
  .cursor, .cursor-dot { display: none; }
}

@media print {
  .nav, .fab, .loader, .cursor, .cursor-dot, .scroll-progress,
  .lightbox, .game-frame, .scroll-cue { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1.5rem; }
}

/* ==========================================================================
   PODSTRANICE — zajednicki
   ========================================================================== */
.page-main { padding-top: var(--nav-h); }
.page-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}
.page-hero__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.02;
  margin-bottom: .8rem;
}
.page-hero__title em { color: var(--accent-lite); font-style: italic; letter-spacing: .012em; padding-right: .04em; }
.page-hero__sub { color: var(--text-muted); max-width: 60ch; margin: 0 auto; font-size: var(--fs-lead); }

/* ---------- O NAMA (prose) ---------- */
.prose { max-width: 900px; margin: 0 auto; }
.prose__lead p { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--text); margin-bottom: 1.1rem; line-height: 1.75; }
.prose__lead strong { color: var(--accent-lite); font-weight: 600; }
.prose__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2.6rem 0; }
.prose-card { padding: 2rem 1.8rem; border-radius: var(--r-lg); }
.prose-card__icon {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 1rem;
  background: var(--surface); border: 1px solid var(--line-strong);
}
.prose-card__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.prose-card h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; margin-bottom: .6rem; }
.prose-card p { color: var(--text-muted); }
.prose__block { margin: 2.2rem 0; }
.prose__block h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .8rem; color: var(--accent-lite); }
.prose__block p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }
.prose__block--center { text-align: center; max-width: 680px; margin-inline: auto; }
.prose__sign { font-family: var(--font-display); font-size: 1.2rem; color: var(--text); margin-top: 1.4rem; }
.prose__sign em { color: var(--accent-lite); }
@media (max-width: 640px) { .prose__cards { grid-template-columns: 1fr; } }

/* ---------- JELOVNIK dopune ---------- */
.menu-tools { margin-bottom: 2rem; }
.dish__media {
  position: relative;
  width: 100%;
  height: 210px;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: var(--r-md) var(--r-md) 0 0;
  background: radial-gradient(circle at 50% 40%, var(--bg-elev), var(--bg-alt));
  flex-shrink: 0;
}
.dish__media img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center; display: block;
  transition: transform .6s var(--ease-out);
}
.dish:hover .dish__media img { transform: scale(1.05); }
.dish__body { padding: 1.1rem 1.2rem; flex: 1; }
.dish__name { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; margin-bottom: .3rem; }
.dish__desc { color: var(--text-muted); font-size: .9rem; }
.dish__price { position: absolute; top: .9rem; right: .9rem; background: var(--grad-gold); color: var(--on-accent); font-weight: 600; padding: .3rem .7rem; border-radius: var(--r-pill); font-size: .85rem; }
.dish.is-hidden { display: none; }
.menu-cat { grid-column: 1 / -1; font-family: var(--font-display); font-weight: 500; font-size: 1.7rem; color: var(--accent-lite); margin: 1.6rem 0 .4rem; padding-bottom: .5rem; border-bottom: 1px solid var(--line); }
.menu-cat.is-hidden { display: none; }
.menu-empty { grid-column: 1 / -1; text-align: center; color: var(--text-muted); padding: 2rem 0; }
.menu-note { text-align: center; color: var(--text-muted); margin-top: 2rem; }
.menu-note a { color: var(--accent-lite); }

/* ---------- IGRICE ---------- */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; }
.game-card { overflow: hidden; border-radius: var(--r-lg); }
.game-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.game-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.game-card:hover .game-card__media img { transform: scale(1.06); }
.game-card__play {
  position: absolute; inset: 0; margin: auto;
  width: 66px; height: 66px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--grad-gold); display: grid; place-items: center;
  box-shadow: var(--sh-gold); transition: transform .3s var(--ease-out);
}
.game-card__play:hover { transform: scale(1.1); }
.game-card__play svg { width: 26px; height: 26px; fill: var(--on-accent); margin-left: 3px; }
.game-card__body { padding: 1.4rem 1.6rem; }
.game-card__body h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; margin-bottom: .5rem; }
.game-card__body p { color: var(--text-muted); margin-bottom: 1.1rem; }
.game-frame__placeholder { color: var(--text-muted); text-align: center; font-family: var(--font-display); font-size: 1.3rem; }
.game-frame__placeholder span { display: block; font-family: var(--font-mono); font-size: .8rem; margin-top: .6rem; color: var(--text-dim); }
.game-frame__stage { display: grid; place-items: center; min-height: 50vh; }

/* ---------- KONTAKT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: start; }
.contact-list { list-style: none; display: grid; gap: 1.3rem; margin-bottom: 2rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list__icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line-strong); }
.contact-list__icon svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-list strong { display: block; font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--accent-lite); margin-bottom: .2rem; }
.contact-list a, .contact-list span { color: var(--text-muted); }
.contact-map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/10; }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }
.contact-form { padding: 2rem; border-radius: var(--r-lg); }
.contact-form .field { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: .4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { font-weight: 500; font-size: .92rem; }
.contact-form input, .contact-form textarea {
  padding: .8rem 1rem; border-radius: var(--r-sm);
  border: 1px solid var(--line-strong); background: var(--surface);
  color: var(--text); font: inherit; transition: border-color .3s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 0; border-color: var(--accent); }
.field.has-error input, .field.has-error textarea { border-color: var(--c-ember); }
.field__error { color: var(--c-ember); font-size: .8rem; min-height: 1em; }
.hp-field { position: absolute; left: -9999px; }
.form-status { margin-top: .8rem; font-weight: 500; }
.form-status.ok { color: #4ADE80; }
.form-status.err { color: var(--c-ember); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ---------- MUZIKA ---------- */
.tracks { display: grid; gap: 1rem; max-width: 780px; margin: 0 auto; }
.track { display: flex; align-items: center; gap: 1.3rem; padding: 1.2rem 1.5rem; border-radius: var(--r-md); }
.track__num { font-family: var(--font-display); font-size: 1.8rem; color: var(--accent-lite); opacity: .5; min-width: 2ch; }
.track__body { flex: 1; }
.track__title { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; margin-bottom: .1rem; }
.track__meta { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: .7rem; }
.track__audio { width: 100%; height: 40px; }
.music-note { text-align: center; color: var(--text-muted); margin-top: 2rem; }
@media (max-width: 540px) { .track { flex-direction: column; align-items: stretch; text-align: center; } }

/* ---------- JELOVNIK: responsive grid 5 -> 1 ---------- */

/* kompaktnije kartice jer ih je 5 u redu */
.menu-cat { grid-column: 1 / -1; }

/* ---------- O NAMA: grafika (stats + ornament) ---------- */
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  margin: 2.6rem 0;
}
.about-stat {
  text-align: center; padding: 1.6rem 1rem;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface);
}
.about-stat__icon {
  width: 46px; height: 46px; margin: 0 auto .7rem;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--bg-elev); border: 1px solid var(--line-strong);
}
.about-stat__icon svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.about-stat strong { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--accent-lite); line-height: 1; margin-bottom: .3rem; }
.about-stat span { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }

.ornament { display: flex; align-items: center; gap: 1.2rem; margin: 3rem auto; max-width: 520px; color: var(--accent); }
.ornament__line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong)); }
.ornament__line:last-child { background: linear-gradient(90deg, var(--line-strong), transparent); }
.ornament__mark { width: 40px; height: 40px; flex-shrink: 0; opacity: .85; }

@media (max-width: 720px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- JELOVNIK: jela u redu (5 po redu) ---------- */
.menu-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-bottom: 1rem;
}
@media (min-width: 1400px) { .menu-list { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1100px) { .menu-list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .menu-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .menu-list { grid-template-columns: 1fr; } }

/* kompaktnije kartice u redu od 5 */
.menu-list .dish__body { padding: 1.1rem 1.15rem; }
.menu-list .dish__name { font-size: 1.15rem; }
.menu-list .dish__desc { font-size: .88rem; }
.menu-list .dish__price { top: .8rem; right: .8rem; padding: .3rem .7rem; font-size: .85rem; }

/* Razmak izmedju lead teksta i "Pozovite odmah" dugmeta u dostavi */
.delivery__call { margin-top: 1.6rem; }

/* ==========================================================================
   HARDENING — forsiraj dark temu i boje protiv naslijeđenog CSS-a
   (stara tema / Elementor mogu ubaciti crna slova; ovo ih nadjačava)
   ========================================================================== */
html { color-scheme: dark; }
html, body {
  background: var(--bg) !important;
  color: var(--text) !important;
}
/* Naslovi uvijek svijetli (osim zlatnih <em> koji ostaju gradijent) */
body.odiseja h1,
body.odiseja h2,
body.odiseja h3,
body.odiseja h4,
body.odiseja h5,
body.odiseja h6,
body.odiseja .h1,
body.odiseja .h2,
body.odiseja .h3 {
  color: var(--c-cream);
}
/* Zlatni naglašeni dio naslova ostaje gradijent */
body.odiseja h1 em,
body.odiseja h2 em,
body.odiseja h3 em,
body.odiseja .h1 em,
body.odiseja .h2 em,
body.odiseja .h3 em {
  color: transparent;
  -webkit-text-fill-color: transparent;
}
/* Paragrafi i osnovni tekst */
body.odiseja p { color: var(--text-muted); }
body.odiseja li,
body.odiseja span,
body.odiseja a,
body.odiseja strong,
body.odiseja label,
body.odiseja figcaption { color: inherit; }
/* Linkovi u sadržaju naslijede svijetlu boju */
body.odiseja .container a:not(.btn):not(.social):not(.chip) { color: inherit; }

/* Dugmad — nadjačaj tuđe .button/.wp-block-button stilove */
body.odiseja .btn {
  text-decoration: none !important;
  border-radius: var(--r-pill) !important;
  font-family: var(--font-body) !important;
  line-height: 1 !important;
  text-transform: none !important;
  width: auto !important;
}
body.odiseja .btn--gold,
body.odiseja .btn--call {
  background: var(--grad-gold) !important;
  color: var(--on-accent) !important;
  border: 0 !important;
}
body.odiseja .btn--gold span,
body.odiseja .btn--call span { color: var(--on-accent) !important; }
body.odiseja .btn--outline {
  background: var(--surface) !important;
  color: var(--c-cream) !important;
  border: 1px solid var(--line-strong) !important;
}
body.odiseja .btn--outline span { color: inherit !important; }
body.odiseja .btn--ghost {
  background: transparent !important;
  color: var(--c-cream) !important;
  border: 1px solid var(--line) !important;
}

/* ==========================================================================
   MOBILNI HARDENING + fallbackovi
   ========================================================================== */
/* Fallback za color-mix (stariji browseri) — mobilni meni pozadina */
@media (max-width: 1024px) {
  .nav__menu { background: #14100D; background: color-mix(in srgb, var(--bg-alt) 96%, transparent); }
}

/* Spriječi horizontalni scroll na svim ekranima */
html, body { max-width: 100%; overflow-x: hidden; }
* { min-width: 0; }
img, svg, iframe, video, canvas { max-width: 100%; height: auto; }

@media (max-width: 768px) {
  /* Hero tekst da lijepo stane */
  .hero__title { font-size: clamp(2.6rem, 12vw, 4.2rem); }
  .hero__actions { flex-wrap: wrap; }
  .hero__coffee { opacity: .35; }

  /* Sekcije čvršći razmaci */
  .container { padding-inline: var(--pad-x); }

  /* Kartice usluga i sl. u jednu kolonu gdje treba */
  .services__grid, .cards, .slots { grid-template-columns: 1fr !important; }

  /* Timeline čitljiv na mobitelu */
  .timeline__line { left: 22px; }
  .tl-item, .tl-item--left, .tl-item--right {
    width: 100%; left: 0; text-align: left; padding: 1rem 0 1rem 3.4rem;
  }
  .tl-item--left .tl-item__icon,
  .tl-item--right .tl-item__icon { left: -2px; right: auto; top: 1.2rem; }

  /* Testimonijali/quote puna širina */
  .testi__track, .quotes { flex-direction: column; }
}

@media (max-width: 480px) {
  .page-hero__title { font-size: clamp(2rem, 10vw, 3rem); }
  .btn { width: 100%; }
  .hero__actions .btn, .cta__actions .btn { width: 100%; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .contact-list li { align-items: flex-start; }
}

/* Pizza ikona ostaje vidljiva i uredna na mobitelu (pored burgera) */
@media (max-width: 1024px) {
  .nav__actions { display: flex; align-items: center; gap: .6rem; }
  .nav__pizza { width: 42px; height: 42px; }
}

/* ==========================================================================
   ZLATNI AKCENTI — premium hardening (nadjačava bijele hovere iz starih tema)
   ========================================================================== */
/* Svi linkovi u navigaciji i sadržaju na hover → zlatno, glatko 250ms */
body.odiseja a { transition: color .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease); }

/* Navigacija */
body.odiseja .nav__link:hover,
body.odiseja .nav__link:focus-visible,
body.odiseja .nav__link.is-active { color: var(--accent-lite) !important; }

/* Footer linkovi */
body.odiseja .footer__col a:hover,
body.odiseja .footer__phone:hover { color: var(--accent-lite) !important; }

/* Sadržajni linkovi (link-underline i obični) → zlatno na hover */
body.odiseja .container a:not(.btn):not(.social):not(.nav__pizza):not(.brand):hover { color: var(--accent-lite); }

/* Chips (filteri jelovnika) */
body.odiseja .chip:hover,
body.odiseja .chip.is-active { color: var(--accent-lite); border-color: var(--accent); }
body.odiseja .chip.is-active { background: var(--grad-gold); color: var(--on-accent); }

/* Kartice — zlatni border na hover */
body.odiseja .dish:hover,
body.odiseja .game-card:hover,
body.odiseja .prose-card:hover,
body.odiseja .track:hover,
body.odiseja .news-card:hover,
body.odiseja .quote:hover,
body.odiseja .service-card:hover,
body.odiseja .pillar:hover { border-color: var(--accent); }

/* Ikone u karticama na hover → zlatnije */
body.odiseja .contact-list li:hover .contact-list__icon,
body.odiseja .prose-card:hover .prose-card__icon,
body.odiseja .about-stat:hover .about-stat__icon { border-color: var(--accent); }

/* Badge/oznake ostaju zlatne */
body.odiseja .badge,
body.odiseja .badge-new,
body.odiseja .tag { color: var(--accent-lite); border-color: var(--line-strong); }

/* ==========================================================================
   HERO — dinamički status radnog vremena
   ========================================================================== */
.hero__status {
  display: inline-flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  text-transform: none; letter-spacing: .02em;
}
.status-dot {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
  position: relative;
}
.status-dot.is-open {
  background: #3FB950;
  box-shadow: 0 0 0 0 rgba(63,185,80,.6);
  animation: status-pulse-open 2.2s var(--ease-out) infinite;
}
.status-dot.is-closed {
  background: #E5534B;
  box-shadow: 0 0 0 0 rgba(229,83,75,.55);
  animation: status-pulse-closed 2.6s var(--ease-out) infinite;
}
@keyframes status-pulse-open {
  0%   { box-shadow: 0 0 0 0 rgba(63,185,80,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(63,185,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(63,185,80,0); }
}
@keyframes status-pulse-closed {
  0%   { box-shadow: 0 0 0 0 rgba(229,83,75,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(229,83,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(229,83,75,0); }
}
.status-label { color: var(--accent-lite); font-weight: 500; }
.status-sub {
  color: var(--text-muted);
  font-family: var(--font-body); font-size: .82rem; letter-spacing: 0;
  text-transform: none;
}
.status-sub::before { content: "·"; margin-right: .5rem; color: var(--text-dim); }
@media (max-width: 520px) {
  .status-sub::before { display: none; }
  .status-sub { flex-basis: 100%; }
}

/* ==========================================================================
   KORPA.BA sekcija
   ========================================================================== */
.korpa__card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  padding: clamp(1.6rem, 3vw, 2.6rem) clamp(1.6rem, 3vw, 3rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-strong);
  position: relative; overflow: hidden;
}
.korpa__card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--grad-warm); opacity: .5;
}
.korpa__main { display: flex; align-items: center; gap: 1.5rem; flex: 1 1 auto; min-width: 260px; }
.korpa__badge {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 18px;
  display: grid; place-items: center;
  background: var(--grad-gold);
  box-shadow: var(--sh-gold);
}
.korpa__badge svg { width: 32px; height: 32px; fill: none; stroke: var(--on-accent); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.korpa__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 2.4vw, 1.8rem); margin-bottom: .5rem; color: var(--c-cream); }
.korpa__rating { display: flex; align-items: baseline; gap: .4rem; margin-bottom: .6rem; }
.korpa__stars svg { width: 20px; height: 20px; fill: var(--accent-lite); stroke: none; transform: translateY(3px); }
.korpa__rating strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--accent-lite); }
.korpa__rating-max { color: var(--text-dim); font-family: var(--font-mono); font-size: .85rem; }
.korpa__text { color: var(--text-muted); max-width: 46ch; }
.korpa__btn { flex-shrink: 0; }

@media (max-width: 760px) {
  .korpa__card { flex-direction: column; align-items: flex-start; text-align: left; }
  .korpa__btn { width: 100%; }
}
@media (max-width: 480px) {
  .korpa__main { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot.is-open, .status-dot.is-closed { animation: none; }
}

/* Zbliži Korpa.ba i "Novo radno vrijeme" (news) sekcije */
.korpa { padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.news  { padding-top: clamp(1.5rem, 3vw, 2.5rem); }

/* Istaknuti mali naslovi (eyebrow) — zlatni, nadjačava tuđi CSS */
body.odiseja .eyebrow,
body.odiseja .eyebrow * {
  color: var(--accent-lite) !important;
}
body.odiseja .eyebrow__dot { background: var(--accent) !important; }
/* Status label ostaje zlatan, ali dot zelen/crven */
body.odiseja .hero__status .status-dot.is-open { background: #3FB950 !important; }
body.odiseja .hero__status .status-dot.is-closed { background: #E5534B !important; }
body.odiseja .hero__status .status-sub { color: var(--text-muted) !important; }

/* ==========================================================================
   GALERIJA — novi grid (veće slike, bez zlatne trake/naziva)
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-grid .ph {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease-out), border-color var(--t-mid) var(--ease);
}
.gallery-grid .ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
  filter: none;
}
.gallery-grid .ph::after { display: none; }        /* uklonjena zlatna/tamna traka */
.gallery-grid .ph figcaption { display: none; }     /* uklonjen naziv */
.gallery-grid .ph:hover,
.gallery-grid .ph:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--accent);
}
.gallery-grid .ph:hover img,
.gallery-grid .ph:focus-visible img { transform: scale(1.06); }

@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .7rem; } }

/* ==========================================================================
   JELOVNIK — čvrst fix kartica (nadjačava sve sukobljene stilove)
   ========================================================================== */
body.odiseja .menu-list .dish {
  display: flex !important;
  flex-direction: column !important;
  border-radius: var(--r-lg) !important;
  overflow: hidden !important;
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  min-height: 0 !important;
  height: auto !important;
  width: auto !important;
}
body.odiseja .menu-list .dish__media {
  width: 100% !important;
  height: 210px !important;
  aspect-ratio: auto !important;
  border-radius: var(--r-md) var(--r-md) 0 0 !important;
  overflow: hidden !important;
  flex: 0 0 auto !important;
}
body.odiseja .menu-list .dish__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
}
body.odiseja .menu-list .dish__body {
  flex: 1 1 auto !important;
  padding: 1.1rem 1.15rem !important;
}
body.odiseja .menu-list .dish__price {
  position: absolute !important;
  top: .8rem !important; right: .8rem !important; bottom: auto !important; left: auto !important;
  width: auto !important;
  border-radius: var(--r-pill) !important;
}

/* Loader "Odiseja" — sigurno zlatni gradient (nadjačava tuđi CSS) */
body.odiseja .loader__name {
  background: var(--grad-gold) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* ==========================================================================
   ISTAKNUTI NASLOVI — zlatni gradient (kao hero facts)
   ========================================================================== */
/* Naslovi kategorija u jelovniku (Roštilj, Doručak...) → zlatni gradient */
body.odiseja .menu-cat {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* zadrži liniju pored naslova vidljivom (ona je ::after, ne dobija clip) */
body.odiseja .menu-cat::after { -webkit-text-fill-color: initial; }

/* <em> istaknuti dijelovi svih naslova → zlatni gradient (ako su negdje bijeli) */
body.odiseja h1 em,
body.odiseja h2 em,
body.odiseja h3 em,
body.odiseja .h1 em,
body.odiseja .h2 em,
body.odiseja .h3 em,
body.odiseja .page-hero__title em {
  background: var(--grad-gold) !important;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent !important; color: transparent !important;
}

/* Hero facts — isti zlatni gradient kao "Pogledaj jelovnik" dugme */
body.odiseja .hero__facts strong,
body.odiseja .hero__facts .fact-free__word {
  background: linear-gradient(135deg, #E7C86A 0%, #C9A227 46%, #8E6F14 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* ==========================================================================
   PODSTRANICE — zlatni razdjelnik ispod naslova
   ========================================================================== */
.page-hero__title {
  position: relative;
}
/* tanka zlatna linija + romb u sredini, centrirano ispod naslova */
.page-hero__title::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 1.4rem auto 0;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  position: relative;
}
.page-hero__title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.4rem;
  width: 7px; height: 7px;
  transform: translateX(-50%) translateY(50%) rotate(45deg);
  background: var(--c-gold-lite);
  box-shadow: 0 0 12px 2px rgba(201,162,39,.4);
  z-index: 1;
}
/* razmak da razdjelnik ima mjesta prije podnaslova */
.page-hero__sub { margin-top: 2.2rem; }

/* O nama — istaknuti (bold) tekst bijel, ne sivi */
body.odiseja .prose strong,
body.odiseja .prose__lead strong,
body.odiseja .prose__block strong {
  color: var(--c-cream) !important;
  font-weight: 700;
}

/* Historija timeline — slika iznad teksta (uklapa se u karticu) */
.tl-item__media {
  width: 100%;
  height: 160px;
  margin: -.2rem 0 1rem;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.tl-item__media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s var(--ease-out);
}
.tl-item__body:hover .tl-item__media img { transform: scale(1.05); }

/* ==========================================================================
   JELOVNIK — FINALNI čvrst layout (kartice pune širine, ne štapići)
   ========================================================================== */
body.odiseja .menu-grid {
  display: block !important;
  width: 100% !important;
}
body.odiseja .menu-list {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1.4rem !important;
  width: 100% !important;
  margin-bottom: 2rem !important;
}
@media (max-width: 1100px) { body.odiseja .menu-list { grid-template-columns: repeat(3, minmax(0,1fr)) !important; } }
@media (max-width: 760px)  { body.odiseja .menu-list { grid-template-columns: repeat(2, minmax(0,1fr)) !important; } }
@media (max-width: 440px)  { body.odiseja .menu-list { grid-template-columns: 1fr !important; } }

body.odiseja .menu-list .dish {
  width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}
body.odiseja .menu-list .dish__media {
  width: 100% !important;
  height: 220px !important;
  aspect-ratio: auto !important;
}
body.odiseja .menu-list .dish__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* Igrice — jedna kartica centrirano + "uskoro" tekst sa animacijom */
.games-grid--single {
  display: flex;
  justify-content: center;
}
.games-grid--single .game-card {
  max-width: 460px;
  width: 100%;
}
.games-soon {
  text-align: center;
  margin-top: 2.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent-lite);
  display: flex; align-items: center; justify-content: center; gap: .7rem;
}
.games-soon__dots { display: inline-flex; gap: 5px; }
.games-soon__dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  animation: games-soon-bounce 1.4s var(--ease-in-out) infinite;
}
.games-soon__dots span:nth-child(2) { animation-delay: .2s; }
.games-soon__dots span:nth-child(3) { animation-delay: .4s; }
@keyframes games-soon-bounce {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50%      { transform: translateY(-6px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .games-soon__dots span { animation: none; opacity: .7; }
}

/* Filtriranje jelovnika — sakrivanje mora nadjačati hardening !important */
body.odiseja .menu-list .dish.is-hidden { display: none !important; }
body.odiseja .menu-grid .menu-cat.is-hidden { display: none !important; }
body.odiseja .menu-list:has(.dish.is-hidden):not(:has(.dish:not(.is-hidden))) { display: none !important; }

/* ==========================================================================
   GAME MODAL — Hungry JoMu preko cijelog ekrana
   ========================================================================== */
.game-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(11, 9, 7, .92);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.game-modal.is-open { opacity: 1; visibility: visible; }
.game-modal[hidden] { display: none; }
.game-modal__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem 1.2rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line-strong);
  flex-shrink: 0;
}
.game-modal__title {
  font-family: var(--font-display); font-size: 1.2rem;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.game-modal__close {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--surface);
  color: var(--c-cream); font-size: 1.6rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.game-modal__close:hover { border-color: var(--accent); color: var(--accent-lite); transform: rotate(90deg); }
.game-modal__stage { flex: 1; min-height: 0; }
.game-modal__stage iframe { width: 100%; height: 100%; border: 0; display: block; }
body.game-open { overflow: hidden; }

/* ==========================================================================
   DOSTAVA UŽIVO — status + mapa
   ========================================================================== */
.dostava-live {
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: var(--surface);
}
.dostava-live__status {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--font-display); font-size: 1.15rem; color: var(--c-cream);
}
.dostava-live__dot {
  width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0;
  background: var(--text-dim);
}
.dostava-live[data-state="available"] .dostava-live__dot {
  background: #3FB950;
  box-shadow: 0 0 0 0 rgba(63,185,80,.5);
  animation: status-pulse-open 2.2s var(--ease-out) infinite;
}
.dostava-live[data-state="on_delivery"] .dostava-live__dot {
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(201,162,39,.5);
  animation: pulse-dot 1.8s var(--ease-out) infinite;
}
.dostava-live[data-state="offline"] .dostava-live__dot { background: var(--text-dim); }
.dostava-live__map {
  margin-top: 1.2rem;
  height: 340px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.dostava-live__hint {
  margin-top: .8rem; color: var(--text-muted); font-size: .9rem;
}
/* vozilo ikona na mapi */
.dostava-vehicle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-gold);
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
  border: 2px solid #fff;
}
.dostava-vehicle svg { width: 22px; height: 22px; fill: var(--on-accent); }
.leaflet-container { background: var(--bg-elev); font-family: var(--font-body); }

/* Uski kontejner (dostava stranica) */
.container--narrow { max-width: 820px; }
.dostava-section .sec-head { margin-bottom: 2rem; }

/* Dostava — dugme za poziv */
.dostava-live__call {
  margin-top: 1.2rem;
  display: inline-flex; align-items: center; gap: .6rem;
}
.dostava-live__call svg { width: 18px; height: 18px; fill: var(--on-accent); }
.dostava-live[data-state="closed"] .dostava-live__dot { background: var(--text-dim); }

/* ==========================================================================
   DOSTAVA sekcija — centriranje, put ispod (ne preko teksta)
   ========================================================================== */
/* Vertikalno centriraj tekst i skuter u jednu liniju */
body.odiseja .delivery .grid-2 {
  align-items: center;
}
body.odiseja .delivery__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Skuter poravnat sa tekstom, ne spušten */
body.odiseja .delivery__art {
  align-self: center;
  margin: 0;
}
/* Put ide skroz dolje, ispod svega — nikad preko teksta */
body.odiseja .delivery__road {
  bottom: 0;
  z-index: 0;
  opacity: .35;
}
body.odiseja .delivery .container {
  position: relative;
  z-index: 1;
}
/* Badge "dostava aktivna" ispod skutera, centriran */
body.odiseja .delivery__badge {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  body.odiseja .delivery__art { order: -1; margin-bottom: 1.5rem; }
  body.odiseja .delivery__body { text-align: center; align-items: center; }
  body.odiseja .delivery__meta { justify-content: center; }
  body.odiseja .delivery__road { bottom: 0; }
}

/* Footer radno vrijeme — podnaslovi (Restoran/Dostava/Kuhinja) */
.hours__head {
  color: var(--accent-lite) !important;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: .7rem;
  padding-bottom: .2rem;
  border-bottom: 1px solid var(--line);
}
.hours__head:first-child { margin-top: 0; }
.footer__mail { word-break: break-all; }
.footer__mail:hover { color: var(--accent-lite) !important; }

/* Jelovnik toolbar na mobitelu — search i filteri uredno složeni */
/* ==========================================================================
   KONTAKT — pregledna kartica radnog vremena
   ========================================================================== */
.hours-card {
  margin-top: 1.8rem;
  padding: 1.6rem 1.7rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  background: var(--surface);
}
.hours-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--c-cream);
  margin: 0 0 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--line);
}
.hours-block { margin-bottom: 1.3rem; }
.hours-block:last-child { margin-bottom: 0; }
.hours-block__head {
  display: flex; align-items: center; gap: .55rem;
  margin-bottom: .55rem;
  line-height: 1;
}
.hours-block__head svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  display: block;
  fill: none; stroke: var(--accent); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.hours-block__head span {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-lite);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.hours-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem;
  padding: .4rem 0;
  border-bottom: 1px dashed var(--line);
}
.hours-row:last-child { border-bottom: 0; }
.hours-row span { color: var(--text-muted); font-size: .95rem; }
.hours-row strong {
  color: var(--c-cream);
  font-family: var(--font-mono);
  font-size: .95rem;
  white-space: nowrap;
}
.hours-row--off strong { color: var(--text-dim); font-style: normal; }

/* ==========================================================================
   KONTAKT — novi raspored (kontakt + radno vrijeme u ravni, forma/mapa ispod)
   ========================================================================== */
.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.contact-block-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--c-cream);
  margin: 0 0 1.3rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--line-strong);
}
/* Kontakt info kao kartica da bude u ravni sa radnim vremenom */
.contact-info {
  padding: 1.6rem 1.7rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  background: var(--surface);
  height: 100%;
}
.contact-info .contact-list { margin: 0; }
/* Radno vrijeme kartica — ukloni gornji margin (sad je u gridu) */
.hours-card { margin-top: 0; height: 100%; }
.hours-card .hours-card__title { display: none; } /* koristi se contact-block-title */

.contact-bottom {
  display: block;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.contact-bottom .contact-form { margin: 0; max-width: none; width: 100%; }

/* Mapa puna širina ispod svega — fiksna visina, uvijek uredna */
.contact-map-full {
  width: 100%;
  height: 420px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.contact-map-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

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

/* ==========================================================================
   JELOVNIK MOBITEL — čist raspored (search + kategorije u redovima)
   ========================================================================== */
@media (max-width: 768px) {
  /* Kompaktan razmak — bez velikog praznog prostora */
  .page-hero { padding-top: 2rem; padding-bottom: .5rem; }
  .menu-section { padding-top: .5rem; padding-bottom: 2rem; }

  /* Search i kategorije jedno ispod drugog */
  body.odiseja .menu-tools {
    position: static;
    padding-block: .8rem;
    margin-bottom: 1.2rem;
  }
  body.odiseja .menu-tools__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .9rem;
    min-height: 0;
    height: auto;
  }

  /* Pretraga */
  body.odiseja .search {
    max-width: none;
    width: 100%;
    flex: 0 0 auto;
    position: relative;
    display: block;
  }
  body.odiseja .search input {
    width: 100%;
    box-sizing: border-box;
    height: 48px;
    padding: 0 1rem 0 2.7rem;
  }
  body.odiseja .search svg {
    position: absolute;
    left: 1rem;
    top: 24px;
    transform: translateY(-50%);
    margin: 0;
    z-index: 2;
  }

  /* Kategorije — lome se u redove, SVE vidljive (bez klizanja) */
  body.odiseja .chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    overflow: visible;
  }
  body.odiseja .chip {
    flex: 0 0 auto;
    font-size: .82rem;
    padding: .5rem .9rem;
  }
}

/* ==========================================================================
   DOSTAVE PANEL (privatni)
   ========================================================================== */
.dp-login { min-height: 60vh; display: grid; place-items: center; padding: 2rem 0; }
.dp-login__card { max-width: 380px; width: 100%; padding: 2.2rem; text-align: center; border-radius: var(--r-lg); border: 1px solid var(--line-strong); }
.dp-login__title { font-family: var(--font-display); font-size: 1.8rem; color: var(--c-cream); margin-bottom: .4rem; }
.dp-login__title em { color: transparent; -webkit-text-fill-color: transparent; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; }
.dp-login__sub { color: var(--text-muted); margin-bottom: 1.4rem; }
.dp-login form { display: flex; flex-direction: column; gap: .9rem; }
.dp-login input { padding: .85rem 1rem; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--line); color: var(--text); }
.dp-error { color: var(--c-ember); margin-bottom: 1rem; }

.dp { max-width: 760px; margin: 0 auto; }
.dp__bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.dp__brand { font-family: var(--font-mono); letter-spacing: .1em; color: var(--accent-lite); }
.dp__logout { color: var(--text-muted); font-size: .9rem; }
.dp__logout:hover { color: var(--accent-lite); }
.dp-note { padding: .8rem 1rem; border-radius: var(--r-md); margin-bottom: 1.2rem; }
.dp-note--ok { background: rgba(63,185,80,.12); border: 1px solid rgba(63,185,80,.4); color: #7ee29a; }
.dp-card { padding: 1.6rem; border-radius: var(--r-lg); border: 1px solid var(--line-strong); }
.dp-card__title { font-family: var(--font-display); font-size: 1.4rem; color: var(--c-cream); margin-bottom: 1.2rem; }
.dp-add { display: flex; gap: .6rem; margin-bottom: 1.2rem; }
.dp-add select { flex: 1; padding: .7rem .8rem; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); color: var(--text); }
.dp-items { width: 100%; border-collapse: collapse; margin-bottom: 1.4rem; }
.dp-items th, .dp-items td { text-align: left; padding: .6rem .5rem; border-bottom: 1px solid var(--line); font-size: .92rem; }
.dp-items th { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-lite); }
.dp-items tfoot td { font-family: var(--font-mono); color: var(--c-cream); font-weight: 600; border-bottom: 0; padding-top: .8rem; }
.dp-items input { background: var(--surface); border: 1px solid var(--line); color: var(--text); border-radius: 6px; padding: .3rem; }
.dp-del { background: none; border: 0; color: var(--c-ember); font-size: 1.2rem; cursor: pointer; }
.dp-fields { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1.4rem; }
.dp-fields label { display: flex; flex-direction: column; gap: .35rem; font-size: .9rem; color: var(--text-muted); }
.dp-fields input, .dp-fields textarea { padding: .7rem .9rem; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); color: var(--text); font-family: inherit; }

/* ==========================================================================
   ONLINE NARUDŽBA — dugme dodaj, korpa, modal
   ========================================================================== */
.dish__add {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: .8rem;
  padding: .5rem .9rem;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-lite);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.dish__add svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; }
.dish__add:hover { background: var(--grad-gold); color: var(--on-accent); border-color: transparent; }

/* Lebdeća korpa */
.cart-fab {
  position: fixed; right: 1.4rem; bottom: 5.8rem; z-index: 900;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.3rem;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
  color: var(--on-accent);
  border: 0; cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  font-family: var(--font-mono);
  transition: transform var(--t-fast) var(--ease);
}
.cart-fab svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linejoin: round; }
.cart-fab__count {
  position: absolute; top: -6px; left: -6px;
  min-width: 22px; height: 22px; padding: 0 5px;
  border-radius: 11px; background: var(--c-ember, #c0392b); color: #fff;
  font-size: .72rem; display: grid; place-items: center;
}
.cart-fab__total { font-weight: 600; }
.cart-fab--bump { transform: scale(1.12); }

/* Modal */
.order-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: end center; }
.order-modal[hidden] { display: none !important; }
.cart-fab[hidden] { display: none !important; }
.order-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(3px); }
.order-modal__panel {
  position: relative; z-index: 2;
  width: 100%; max-width: 560px;
  max-height: 88vh; overflow-y: auto;
  padding: 2rem;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  border: 1px solid var(--line-strong);
}
@media (min-width: 640px) {
  .order-modal { place-items: center; }
  .order-modal__panel { border-radius: var(--r-lg); }
}
.order-modal__x { position: absolute; top: 1rem; right: 1.2rem; background: none; border: 0; color: var(--text-muted); font-size: 1.8rem; cursor: pointer; line-height: 1; }
.order-modal__title { font-family: var(--font-display); font-size: 1.6rem; color: var(--c-cream); margin-bottom: 1.4rem; }
.order-modal__title em { color: transparent; -webkit-text-fill-color: transparent; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; }
.order-item { display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: .8rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.order-item__info strong { display: block; color: var(--c-cream); font-size: .95rem; }
.order-item__info span { color: var(--text-dim); font-size: .82rem; }
.order-item__qty { display: inline-flex; align-items: center; gap: .5rem; }
.order-item__qty button { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); color: var(--text); cursor: pointer; font-size: 1rem; }
.order-item__line { font-family: var(--font-mono); color: var(--c-cream); font-size: .9rem; }
.order-item__del { background: none; border: 0; color: var(--c-ember); font-size: 1.2rem; cursor: pointer; }
.order-empty { color: var(--text-muted); text-align: center; padding: 1.4rem 0; }
.order-sum { display: flex; justify-content: space-between; align-items: baseline; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--line-strong); }
.order-sum strong { font-family: var(--font-mono); font-size: 1.3rem; color: var(--accent-lite); }
.order-min { font-size: .82rem; color: var(--text-dim); margin-top: .5rem; }
.order-min--warn { color: var(--c-ember); }
.order-form { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.4rem; }
.order-form label { display: flex; flex-direction: column; gap: .3rem; font-size: .85rem; color: var(--text-muted); }
.order-form input, .order-form textarea { padding: .7rem .9rem; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); color: var(--text); font-family: inherit; }
.order-err { color: var(--c-ember); font-size: .85rem; }
.order-send { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; }
.order-send:disabled { opacity: .5; cursor: not-allowed; }
.order-note-sm { text-align: center; font-size: .8rem; color: var(--text-dim); }

/* Kategorija bez online narudžbe + telefon dugme */
.menu-cat__note {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  vertical-align: middle;
}
.dish__phone {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: .8rem;
  padding: .5rem .9rem;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .05em;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.dish__phone svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.dish__phone:hover { border-color: var(--accent); color: var(--accent-lite); }

/* Zahvala nakon narudžbe */
.order-thanks { text-align: center; padding: 1rem 0 .5rem; }
.order-thanks__icon {
  width: 68px; height: 68px; margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-gold);
}
.order-thanks__icon svg { width: 32px; height: 32px; fill: none; stroke: var(--on-accent); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.order-thanks__title { font-family: var(--font-display); font-size: 1.6rem; color: var(--c-cream); margin-bottom: .7rem; }
.order-thanks__text { color: var(--text-muted); line-height: 1.6; margin-bottom: 1.6rem; max-width: 380px; margin-left: auto; margin-right: auto; }
.order-thanks__track {
  color: var(--accent-lite);
  font-family: var(--font-body);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  max-width: 380px;
  margin-left: auto; margin-right: auto;
}
.order-thanks__btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; margin-bottom: 1rem; }
.order-thanks__close {
  display: block; margin: 0 auto;
  background: none; border: 0;
  color: var(--text-muted); font-size: .9rem; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}
.order-thanks__close:hover { color: var(--accent-lite); }

/* ==========================================================================
   IZDVOJENI ARTIKLI (zlatni glow)
   ========================================================================== */
.dish--featured {
  position: relative;
  border: 1px solid var(--accent) !important;
  box-shadow: 0 0 0 1px rgba(201,162,39,.3), 0 0 28px rgba(201,162,39,.22);
}
.dish--featured::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 40px rgba(201,162,39,.25) inset;
}
.dish__badge {
  position: absolute; top: .8rem; left: .8rem; z-index: 3;
  background: var(--grad-gold);
  color: var(--on-accent);
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .28rem .6rem;
  border-radius: var(--r-pill);
  font-weight: 600;
}

/* ==========================================================================
   KOLO SREĆE
   ========================================================================== */
.wheel-box {
  margin-top: 1.4rem;
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--accent);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 50% -10%, rgba(201,162,39,.16), transparent 60%),
    var(--surface);
  text-align: center;
}
.wheel-box__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: .3rem;
}
.wheel-box__sub { color: var(--text-muted); font-size: .85rem; margin-bottom: 1.3rem; }
.wheel-wrap { position: relative; width: 260px; height: 260px; margin: 0 auto 1.3rem; filter: drop-shadow(0 8px 24px rgba(0,0,0,.45)); }
.wheel-wrap canvas { display: block; }
.wheel-pointer {
  position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 22px solid var(--accent-lite);
  z-index: 5;
  filter: drop-shadow(0 3px 4px rgba(0,0,0,.6));
}
.wheel-spin { margin: 0 auto; }
.wheel-result {
  margin-top: 1.1rem;
  padding: .85rem 1rem;
  border-radius: var(--r-md);
  background: var(--surface-2, var(--surface));
  border: 1px solid var(--line);
  color: var(--text-muted);
  font-size: .92rem;
}
.wheel-result--win {
  border-color: var(--accent);
  color: var(--accent-lite);
  background: radial-gradient(circle at 50% 0%, rgba(201,162,39,.18), rgba(201,162,39,.06));
  font-weight: 600;
  font-size: 1rem;
}

/* Dostava — rotacija vozila, ažuriranje, gužva */
.dostava-vehicle {
  transition: transform .8s ease;
}
.dostava-live__ago {
  margin-top: .4rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--text-dim);
  letter-spacing: .04em;
}
.dostava-live__ago::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3FB950;
  margin-right: .4rem;
  vertical-align: middle;
  animation: pulse-dot 1.8s var(--ease-out) infinite;
}
/* Gužva stanje — narandžasti ton statusa */
.dostava-live[data-traffic="1"] .dostava-live__dot {
  background: #E8873A;
  box-shadow: 0 0 0 0 rgba(232,135,58,.5);
  animation: pulse-dot 1.4s var(--ease-out) infinite;
}
.dostava-live[data-traffic="1"] .dostava-live__label { color: #E8873A; }

/* Dostava — top-down vozilo + primopredaja smjene */
.dostava-vehicle svg { width: 100%; height: 100%; display: block; }
.dostava-live__smjena[hidden] { display: none !important; }
.dostava-live__smjena {
  display: flex; align-items: center; gap: .6rem;
  margin-top: 1rem;
  padding: .7rem 1rem;
  border-radius: var(--r-md);
  background: rgba(232,135,58,.1);
  border: 1px solid rgba(232,135,58,.4);
  color: #E8873A;
  font-size: .9rem;
}
.dostava-live__smjena svg {
  width: 18px; height: 18px; flex-shrink: 0;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ==========================================================================
   DOSTAVA MAPA — zlatni pin lokacije + crno dostavno vozilo
   ========================================================================== */
/* --- Pin restorana --- */
.dostava-rest-icon { background: none !important; border: 0 !important; }

.dostava-rest {
  position: relative;
  width: 140px; height: 78px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  pointer-events: none;
  /* skaliranje prema zoomu — sidro je dno pina (tacka lokacije) */
  transform: scale(var(--marker-scale, 1));
  transform-origin: 50% 100%;
  transition: transform .25s ease;
}

/* Natpis "Naša lokacija" iznad pina — uvijek vidljiv */
.dostava-rest__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .86rem;
  line-height: 1;
  letter-spacing: .01em;
  color: var(--on-accent);
  background: var(--grad-gold);
  padding: .3rem .75rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,.45), 0 0 18px rgba(201,162,39,.5);
  margin-bottom: 5px;
  position: relative;
}
.dostava-rest__label::after {
  content: "";
  position: absolute; left: 50%; bottom: -4px;
  transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: var(--c-gold);
  border-radius: 2px;
}

/* Pin (suza) sa glow-om */
.dostava-rest__pin {
  position: relative;
  width: 32px; height: 44px;
  display: grid; place-items: center;
}
.dostava-rest__svg {
  position: relative; z-index: 2;
  width: 32px; height: 44px;
  overflow: visible;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,.55));
}
.dostava-rest__body {
  fill: url(#odRestGrad);
  stroke: var(--c-cream);
  stroke-width: 1.6;
}
.dostava-rest__hole { fill: #14100D; stroke: none; }

/* pulsirajuci glow pri dnu pina (na tacki lokacije) */
.dostava-rest__glow {
  position: absolute;
  left: 50%; bottom: 0;
  width: 20px; height: 20px;
  transform: translate(-50%, 35%);
  border-radius: 50%;
  background: rgba(201,162,39,.5);
  box-shadow: 0 0 0 0 rgba(201,162,39,.55);
  animation: dostava-rest-glow 2.2s var(--ease-out) infinite;
  z-index: 1;
}
@keyframes dostava-rest-glow {
  0%   { box-shadow: 0 0 0 0 rgba(201,162,39,.55); opacity: 1; }
  70%  { box-shadow: 0 0 0 18px rgba(201,162,39,0); opacity: .55; }
  100% { box-shadow: 0 0 0 0 rgba(201,162,39,0); opacity: 1; }
}

/* --- Crno dostavno vozilo --- */
.dostava-vehicle-icon { background: none !important; border: 0 !important; }
.dostava-vehicle {
  width: 44px; height: 44px;
  background: none;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  display: grid; place-items: center;
  transition: transform .8s ease;
}
.dostava-vehicle svg {
  width: 100%; height: 100%;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 3px 7px rgba(0,0,0,.6));
  /* skaliranje prema zoomu; rotacija ostaje na .dostava-vehicle da se ne ponistavaju */
  transform: scale(var(--marker-scale, 1));
  transform-origin: 50% 50%;
  transition: transform .25s ease;
}
.dostava-vehicle .car-shadow { fill: rgba(0,0,0,.28); }
.dostava-vehicle .car-body   { fill: #16181C; stroke: #3A3F47; stroke-width: 1.1; }
.dostava-vehicle .car-glass  { fill: #4C5560; stroke: none; }
.dostava-vehicle .car-roof   { fill: #0E1013; stroke: #343941; stroke-width: .9; }
.dostava-vehicle .car-mirror { fill: #16181C; stroke: #3A3F47; stroke-width: .8; }
.dostava-vehicle .car-light  { fill: #FFFFFF; stroke: none; }
.dostava-vehicle .car-tail   { fill: #C4342B; stroke: none; }

@media (prefers-reduced-motion: reduce) {
  .dostava-rest__glow { animation: none; }
  .dostava-vehicle { transition: none; }
}

/* ==========================================================================
   RECENZIJE — blok na zahvali + traka za povratnike
   ========================================================================== */
/* --- Blag blok na zahvali --- */
.order-review {
  margin: 1.4rem auto 1.1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  max-width: 380px;
  text-align: center;
}
.order-review__text {
  display: block;
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.55;
  margin-bottom: .8rem;
}
.order-review__link {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem 1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  color: var(--accent-lite);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .04em;
  transition: border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
}
.order-review__link svg {
  width: 15px; height: 15px;
  fill: currentColor; stroke: none;
}
.order-review__link:hover {
  border-color: var(--accent);
  background: rgba(201,162,39,.1);
  color: var(--accent-lite);
}

/* --- Traka za povratnike --- */
.review-bar {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 940;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.review-bar[hidden] { display: none !important; }
.review-bar.is-in { opacity: 1; transform: translateY(0); }

.review-bar__inner {
  max-width: 620px;
  margin-inline: auto;
  display: flex; align-items: center; gap: .9rem;
  padding: .9rem 1.1rem;
  border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--bg-elev) 94%, transparent);
  border: 1px solid var(--line-strong);
  box-shadow: var(--sh-lg);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.review-bar__icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grad-gold);
}
.review-bar__icon svg {
  width: 19px; height: 19px;
  fill: var(--on-accent); stroke: none;
}
.review-bar__text {
  flex: 1;
  margin: 0;
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.45;
}
.review-bar__btn { flex-shrink: 0; }
.review-bar__x {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border: 0; background: none;
  color: var(--text-dim);
  font-size: 1.4rem; line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.review-bar__x:hover { color: var(--c-cream); background: var(--surface-2); }

/* Da traka ne prekrije lebdeću korpu na mobitelu */
@media (max-width: 640px) {
  .review-bar { bottom: .8rem; left: .7rem; right: .7rem; }
  .review-bar__inner {
    flex-wrap: wrap;
    padding: .85rem 1rem;
    gap: .7rem;
  }
  .review-bar__text { flex: 1 1 100%; order: 2; font-size: .84rem; }
  .review-bar__icon { order: 1; }
  .review-bar__x { order: 1; margin-left: auto; }
  .review-bar__btn { order: 3; width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .review-bar { transition: none; }
}

/* ==========================================================================
   DOSTAVA — legenda statusa, info o vozilu, napomena o placanju
   ========================================================================== */
/* --- Legenda --- */
.dostava-legend {
  margin-top: 1.4rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
}
.dostava-legend__title {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-lite);
  margin: 0 0 1.1rem;
}
.dostava-legend__list { display: grid; gap: .25rem; }
.dostava-legend__item {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: .7rem .8rem;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  opacity: .5;
  transition: opacity var(--t-mid) var(--ease),
              background var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease);
}
/* Aktivni status — istaknut, ostali prigušeni */
.dostava-legend__item.is-active {
  opacity: 1;
  background: rgba(201,162,39,.07);
  border-color: var(--line-strong);
}
.dostava-legend__dot {
  flex-shrink: 0;
  width: 11px; height: 11px;
  border-radius: 50%;
  margin-top: .38rem;
}
.dostava-legend__dot--free   { background: #3FB950; }
.dostava-legend__dot--pickup { background: #E8873A; }
.dostava-legend__dot--out    { background: var(--c-gold); }
.dostava-legend__dot--in     { background: #6FA8DC; }
/* Aktivna tacka dobija suptilan prsten */
.dostava-legend__item.is-active .dostava-legend__dot {
  box-shadow: 0 0 0 4px rgba(255,255,255,.06);
}
.dostava-legend__body { display: flex; flex-direction: column; gap: .15rem; }
.dostava-legend__body strong {
  color: var(--c-cream);
  font-weight: 500;
  font-size: .95rem;
}
.dostava-legend__body span {
  color: var(--text-muted);
  font-size: .85rem;
  line-height: 1.5;
}

/* --- Info o vozilu --- */
.dostava-car {
  margin-top: 1.2rem;
  display: flex; align-items: center; gap: 1.4rem;
  padding: 1.3rem 1.5rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  flex-wrap: wrap;
}
.dostava-car__media {
  flex: 0 0 168px;
  height: 112px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elev);
}
.dostava-car__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.dostava-car__body { flex: 1 1 220px; min-width: 0; }
.dostava-car__eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-lite);
  margin-bottom: .35rem;
}
.dostava-car__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--c-cream);
  margin: 0 0 .4rem;
}
.dostava-car__meta {
  display: flex; align-items: center; gap: .5rem;
  color: var(--text-muted);
  font-size: .9rem;
  margin: 0 0 .5rem;
}
.dostava-car__swatch {
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #16181C;
  border: 1px solid var(--line-strong);
  flex-shrink: 0;
}
.dostava-car__text {
  color: var(--text-dim);
  font-size: .86rem;
  line-height: 1.55;
  margin: 0;
}

/* --- Napomena o placanju --- */
.dostava-pay {
  margin-top: 1.2rem;
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-strong);
  background: rgba(201,162,39,.06);
}
.dostava-pay__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(201,162,39,.12);
  border: 1px solid var(--line);
}
.dostava-pay__icon svg {
  width: 21px; height: 21px;
  fill: none; stroke: var(--accent-lite);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.dostava-pay__text {
  margin: 0;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
}
.dostava-pay__text strong {
  display: block;
  color: var(--c-cream);
  font-weight: 500;
  margin-bottom: .2rem;
}

@media (max-width: 560px) {
  .dostava-legend, .dostava-car, .dostava-pay { padding: 1.1rem 1.15rem; }
  .dostava-car { gap: 1rem; }
  .dostava-car__media { flex: 1 1 100%; height: 160px; }
  .dostava-legend__body span { font-size: .82rem; }
}

/* Dostavljac — ime uz vozilo */
.dostava-car__driver {
  display: flex; align-items: center; gap: .5rem;
  color: var(--text-muted);
  font-size: .9rem;
  margin: 0 0 .5rem;
}
.dostava-car__driver svg {
  width: 16px; height: 16px; flex-shrink: 0;
  fill: none; stroke: var(--accent-lite);
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.dostava-car__driver strong {
  color: var(--c-cream);
  font-weight: 500;
}

/* ==========================================================================
   JELOVNIK — jači glow za preporuke + oznaka "samo u objektu"
   ========================================================================== */
/* Preporuka Odiseje — jači zlatni glow od običnog dish--featured */
.dish--preporuka {
  border-color: var(--accent) !important;
  box-shadow:
    0 0 0 1px rgba(201,162,39,.45),
    0 0 30px rgba(201,162,39,.34),
    0 14px 40px -12px rgba(0,0,0,.6);
  animation: preporuka-pulse 3.2s var(--ease-in-out) infinite;
}
.dish--preporuka::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 48px rgba(201,162,39,.3) inset;
}
.dish--preporuka:hover {
  box-shadow:
    0 0 0 1px rgba(231,200,106,.6),
    0 0 40px rgba(201,162,39,.5),
    var(--sh-lg);
}
@keyframes preporuka-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(201,162,39,.4),  0 0 24px rgba(201,162,39,.26), 0 14px 40px -12px rgba(0,0,0,.6); }
  50%      { box-shadow: 0 0 0 1px rgba(201,162,39,.55), 0 0 40px rgba(201,162,39,.46), 0 14px 40px -12px rgba(0,0,0,.6); }
}

/* Badge "Preporuka Odiseje" — malo veći/istaknutiji */
.dish--preporuka .dish__badge {
  background: var(--grad-gold);
  color: var(--on-accent);
  box-shadow: 0 4px 14px rgba(201,162,39,.5);
}

/* Oznaka "Dostupno samo u objektu" */
.dish__inhouse {
  display: inline-flex; align-items: center; gap: .45rem;
  margin-top: .8rem;
  padding: .5rem .9rem;
  border-radius: var(--r-pill);
  background: rgba(201,162,39,.08);
  border: 1px solid var(--line-strong);
  color: var(--accent-lite);
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .04em;
}
.dish__inhouse svg {
  width: 15px; height: 15px; flex-shrink: 0;
  fill: none; stroke: currentColor;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}

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

/* ==========================================================================
   NAV — brod ikona (zamjena za pizzu): njiše se stalno, na hover valovi teku
   ========================================================================== */
.nav__ship svg { width: 22px; height: 22px; overflow: visible; }
.nav__ship .ship-icon-sail {
  fill: rgba(201,162,39,.14); stroke: var(--accent); stroke-width: 1.7;
  stroke-linejoin: round;
  transition: fill var(--t-fast) var(--ease), stroke var(--t-fast) var(--ease);
}
.nav__ship .ship-icon-mast {
  fill: none; stroke: var(--accent); stroke-width: 1.7; stroke-linecap: round;
  transition: stroke var(--t-fast) var(--ease);
}
.nav__ship .ship-icon-hull {
  fill: rgba(201,162,39,.14); stroke: var(--accent); stroke-width: 1.7;
  stroke-linejoin: round;
  transition: fill var(--t-fast) var(--ease), stroke var(--t-fast) var(--ease);
}
.nav__ship .ship-icon-wave {
  fill: none; stroke: var(--accent); stroke-width: 1.5; stroke-linecap: round;
  transition: stroke var(--t-fast) var(--ease);
}
.nav__ship .ship-icon-wave--2 { opacity: .5; }

/* Brod (jedro+jarbol+trup) se stalno vrlo blago njiše */
.nav__ship .ship-icon-sail,
.nav__ship .ship-icon-mast,
.nav__ship .ship-icon-hull {
  transform-origin: 12px 16px;
  animation: navship-bob 3.4s ease-in-out infinite;
}

/* Valovi miruju dok se ne pređe mišem */
.nav__ship .ship-icon-wave--1,
.nav__ship .ship-icon-wave--2 {
  transform-origin: center;
}

/* HOVER — brod se digne/zlatniji, valovi krenu teći */
.nav__ship:hover {
  color: var(--accent-lite);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px rgba(201,162,39,.1);
}
.nav__ship:hover .ship-icon-sail { fill: rgba(231,200,106,.22); stroke: var(--accent-lite); }
.nav__ship:hover .ship-icon-hull { fill: rgba(231,200,106,.22); stroke: var(--accent-lite); }
.nav__ship:hover .ship-icon-mast { stroke: var(--accent-lite); }
.nav__ship:hover .ship-icon-wave { stroke: var(--accent-lite); }
/* brod jače zaljulja na hover */
.nav__ship:hover .ship-icon-sail,
.nav__ship:hover .ship-icon-mast,
.nav__ship:hover .ship-icon-hull {
  animation: navship-bob 1.6s ease-in-out infinite;
}
/* valovi tek na hover krenu "teći" (pomjeranje lijevo-desno) */
.nav__ship:hover .ship-icon-wave--1 { animation: navwave 1.1s linear infinite; }
.nav__ship:hover .ship-icon-wave--2 { animation: navwave 1.5s linear infinite reverse; }

@keyframes navship-bob {
  0%, 100% { transform: rotate(-3deg); }
  50%      { transform: rotate(3deg); }
}
@keyframes navwave {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-4px); }
}

@media (prefers-reduced-motion: reduce) {
  .nav__ship .ship-icon-sail,
  .nav__ship .ship-icon-mast,
  .nav__ship .ship-icon-hull,
  .nav__ship .ship-icon-wave { animation: none !important; }
}


/* ==========================================================================
   HERO — silueta broda klizi po liniji iznad statistika
   ========================================================================== */
.hero__facts { position: relative; }
.hero__line-ship-li {
  position: absolute; left: 0; top: 0;
  width: 100%; height: 0;
  margin: 0; padding: 0; flex: none;
  pointer-events: none;
}
.hero__line-ship {
  position: absolute;
  left: 0; bottom: -2px;      /* dno trupa tačno na liniji */
  width: 74px;                /* uvećan */
  opacity: 0;
  animation: line-ship-sail 76s linear 1 forwards;
  will-change: transform, opacity;
}
.hero__line-ship svg { width: 100%; height: auto; overflow: visible; display: block; }
.hero__line-ship line, .hero__line-ship path { stroke-linecap: round; stroke-linejoin: round; }
.hero__line-ship .ls-mast { stroke: rgba(231,200,106,.55); stroke-width: 1.4; fill: none; }
.hero__line-ship .ls-sail { fill: rgba(231,200,106,.22); stroke: var(--c-gold-lite); stroke-width: 1.3; }
.hero__line-ship .ls-flag { fill: var(--c-gold); stroke: none; }
.hero__line-ship .ls-hull { fill: rgba(201,162,39,.4); stroke: var(--c-gold-lite); stroke-width: 1.4; }
.hero__line-ship svg { animation: line-ship-rock 2.6s ease-in-out infinite; transform-origin: center bottom; }
@keyframes line-ship-sail {
  0%   { transform: translateX(-60px); opacity: 0; }
  8%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(60vw); opacity: 0; }
}
@keyframes line-ship-rock {
  0%, 100% { transform: rotate(-3deg); }
  50%      { transform: rotate(3deg); }
}
@media (max-width: 768px) {
  .hero__line-ship { width: 58px; bottom: -2px; animation-duration: 18s; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__line-ship { display: none; }
}

/* ==========================================================================
   LUKA NA DNU STRANICE — brod uplovljava i pristaje (iznad footera)
   ========================================================================== */
.page-harbor {
  position: relative;
  height: 200px;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 40%, var(--bg-alt) 100%);
}
/* natpis iznad luke — na hover zlatni i presijava se */
.ph-quote {
  position: absolute;
  top: 34px; left: 50%;
  transform: translateX(-50%);
  width: min(90%, 640px);
  margin: 0;
  text-align: center;
  font-family: var(--font-display, Georgia, serif);
  font-style: italic;
  font-size: clamp(1rem, 2.3vw, 1.45rem);
  line-height: 1.4;
  color: var(--c-cream);
  opacity: .9;
  z-index: 4;
  pointer-events: auto;
  cursor: default;
  transition: color .4s var(--ease), opacity .4s var(--ease);
}
.ph-quote:hover {
  opacity: 1;
  background: linear-gradient(100deg, var(--c-gold-lite) 0%, var(--c-cream) 25%, var(--c-gold) 50%, var(--c-cream) 75%, var(--c-gold-lite) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: ph-quote-shine 2.4s linear infinite;
}
@keyframes ph-quote-shine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.ph-star {
  position: absolute; border-radius: 50%;
  background: var(--c-gold-lite);
  box-shadow: 0 0 8px 1px rgba(231,200,106,.9), 0 0 14px 2px rgba(201,162,39,.5);
}
.ph-star--1 { top: 46px;  left: 14%; width: 3px;   height: 3px;   animation: ph-twinkle 3.2s ease-in-out infinite; }
.ph-star--2 { top: 68px;  left: 30%; width: 2.5px; height: 2.5px; animation: ph-twinkle 2.4s ease-in-out infinite .6s; }
.ph-star--3 { top: 40px;  left: 46%; width: 3.5px; height: 3.5px; animation: ph-twinkle 3.8s ease-in-out infinite 1.1s; }
.ph-star--4 { top: 74px;  left: 62%; width: 2.5px; height: 2.5px; animation: ph-twinkle 2.8s ease-in-out infinite .3s; }
.ph-star--5 { top: 44px;  left: 78%; width: 3.5px; height: 3.5px; animation: ph-twinkle 3.4s ease-in-out infinite .9s; }
.ph-star--6 { top: 66px;  left: 90%; width: 2.5px; height: 2.5px; animation: ph-twinkle 2.6s ease-in-out infinite 1.4s; }
@keyframes ph-twinkle {
  0%, 100% { opacity: .35; transform: scale(.7); }
  50%      { opacity: 1;   transform: scale(1.3); }
}
.ph-dock {
  position: absolute; left: 5%; bottom: 26px;
  width: clamp(160px, 24vw, 260px); height: 60px;
  z-index: 3;                /* mol na obali, iznad valova */
}
.ph-dock line, .ph-dock path, .ph-dock circle { stroke-linecap: round; stroke-linejoin: round; }
.ph-dock .hd-pier { stroke: rgba(200,169,126,.4); stroke-width: 2; }
.ph-dock .hd-post { stroke: rgba(200,169,126,.34); stroke-width: 1.6; }
.ph-dock .hd-tower { fill: rgba(10,8,6,.9); stroke: rgba(231,200,106,.4); stroke-width: 1.2; }
.ph-dock .hd-light {
  fill: var(--c-gold-lite); stroke: none;
  animation: harbor-beacon 3s ease-in-out infinite;
}
@keyframes harbor-beacon {
  0%, 100% { opacity: .4; filter: drop-shadow(0 0 2px rgba(231,200,106,.4)); }
  50%      { opacity: 1;  filter: drop-shadow(0 0 8px rgba(231,200,106,.8)); }
}
.ph-waves { position: absolute; left: 0; bottom: 0; width: 100%; height: 34px; z-index: 2; }
.ph-waves .hw-wave { stroke: none; }
.ph-waves .hw-wave--1 { fill: rgba(201,162,39,.11); transform-origin: bottom; animation: harbor-swell 4.5s ease-in-out infinite; }
.ph-waves .hw-wave--2 { fill: rgba(201,162,39,.17); transform-origin: bottom; animation: harbor-swell 3.2s ease-in-out infinite; }
@keyframes harbor-swell {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50%      { transform: translateY(-3px) scaleY(1.12); }
}
.ph-ship {
  position: absolute;
  bottom: 8px; left: 0;       /* baza lijevo — pristaje uz mol */
  width: clamp(66px, 9vw, 98px);
  z-index: 1;                 /* ispod valova (uronjen) */
  transform: translateX(120vw);   /* počinje desno van ekrana */
  opacity: 0;
}
.page-harbor.is-docked .ph-ship {
  animation: harbor-dock 66s var(--ease-out) 1 forwards;
}
.ph-ship svg { width: 100%; height: auto; overflow: visible; display: block; }
.ph-ship line, .ph-ship path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ph-ship .fs-mast { stroke: var(--c-gold-lite); stroke-width: 2.2; }
.ph-ship .fs-sail { fill: rgba(231,200,106,.16); stroke: var(--c-gold-lite); stroke-width: 2; }
.ph-ship .fs-sail--l { fill: rgba(231,200,106,.1); }
.ph-ship .fs-flag { fill: var(--c-gold); stroke: none; }
.ph-ship .fs-hull { fill: rgba(201,162,39,.3); stroke: var(--c-gold-lite); stroke-width: 2.2; }
.ph-ship .fs-hull-line { stroke: rgba(231,200,106,.5); stroke-width: 1.4; }
.ph-ship .phs-body {
  transform-box: fill-box; transform-origin: center bottom;
  animation: harbor-ship-rock 4s ease-in-out infinite;
}
@keyframes harbor-dock {
  0%   { transform: translateX(120vw); opacity: 0; }
  12%  { opacity: 1; }
  100% { transform: translateX(12%); opacity: 1; }  /* dopluta do mola lijevo i stane */
}
@keyframes harbor-ship-rock {
  0%, 100% { transform: rotate(-2deg); }
  50%      { transform: rotate(2deg); }
}
@media (max-width: 768px) {
  .page-harbor { height: 110px; }
  .ph-ship { bottom: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .ph-ship { transform: translateX(0); opacity: 1; animation: none; }
  .ph-ship .phs-body, .ph-waves .hw-wave, .ph-dock .hd-light { animation: none; }
}

/* ==========================================================================
   HERO — šoljica kafe prati skrol pa stane na liniji (sticky preko JS-a)
   ========================================================================== */
.hero__coffee.is-stuck {
  position: fixed;
  bottom: 3vh;
  /* right ostaje kako je definisano gore (6%), pa ostaje na istom mjestu dok "visi" */
}
