:root {
  --bg: #0b0f17;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --border: rgba(255, 255, 255, 0.14);
  --accent: #fbbf24;
  --accent2: #f59e0b;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --max: 1100px;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f7f8fb;
    --panel: rgba(10, 14, 23, 0.05);
    --panel2: rgba(10, 14, 23, 0.07);
    --text: rgba(10, 14, 23, 0.92);
    --muted: rgba(10, 14, 23, 0.7);
    --border: rgba(10, 14, 23, 0.12);
    --shadow: 0 18px 40px rgba(10, 14, 23, 0.12);
  }
}

html, body {
  overflow-x: hidden;
}

/* moderniji “tvrđi” način (ako je podržan) */
@supports (overflow: clip) {
  html, body {
    overflow-x: clip;
  }
}


/* Base */
* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  /* font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans",
    "Liberation Sans", sans-serif; */
  font-family: "Work Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  line-height: 1.55;
  background-color: var(--bg);
  background-image:
    radial-gradient(900px 520px at 12% 8%, rgba(251, 191, 36, 0.18), transparent 62%),
    radial-gradient(760px 520px at 88% 18%, rgba(245, 158, 11, 0.14), transparent 60%),
    radial-gradient(980px 620px at 50% 115%, rgba(251, 191, 36, 0.1), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.22));
  background-attachment: scroll;
  height: auto;
  min-height: 100vh;
  min-height: 100dvh; /* dinamička visina kad se address bar menja */
}

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 10px;
}

.skip-link:focus {
  left: 16px;
  z-index: 9999;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: color-mix(in oklab, var(--bg) 5%, transparent);
  border-bottom: none;
  will-change: transform;
  transition: transform 0.18s ease, background 0.18s ease;
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.header-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  font-weight: 700;
}

.brand-logo {
  width: 75px;
  height: 75px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin-right: 10px;
}

.brand-name {
  font-weight: 650;
  letter-spacing: 0.2px;
  font-size: 20px;
}

/* Nav (base) */
.nav {
  display: flex;
  gap: 14px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  display: block;
}

.nav a:hover {
  color: var(--text);
  background: var(--panel);
}

.nav a.active {
  color: var(--text);
  background: color-mix(in oklab, var(--accent) 18%, var(--panel));
  border: 1px solid color-mix(in oklab, var(--accent) 40%, var(--border));
}

.header-cta {
  display: flex;
  gap: 10px;
}

/* Icon button (already used for modal close, reused for hamburger) */
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  display: inline-grid;
  place-items: center;
}

.icon-btn:hover {
  background: var(--panel2);
}

.icon-btn:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--accent) 80%, white);
  outline-offset: 2px;
}

/* Hamburger button */
.nav-toggle {
  margin-left: auto;
}

/* Stabilan hamburger (3 linije) */
.hamburger {
  position: relative;
  width: 20px;
  height: 2px;
  display: block;
  background: color-mix(in oklab, var(--text) 90%, transparent);
  border-radius: 2px;
  transition: background 0.18s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: color-mix(in oklab, var(--text) 90%, transparent);
  transition: transform 0.18s ease, top 0.18s ease, opacity 0.18s ease;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* X animacija */
.site-header.nav-open .hamburger {
  background: transparent;
}

.site-header.nav-open .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.nav-open .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-header .header-cta .btn {
  margin-top: 0; /* override globalnog .btn-primary margin-top */
  line-height: 1;
}

/* Mobile: off-canvas nav (side drawer) */
@media (max-width: 759px) {
  /* "Pozovi" u headeru sakrij (jer je u meniju) */
  .header-cta { display: none; }

  /* Drži header i toggle iznad overlay-a da može da se zatvori */
  .site-header { z-index: 70; }
  .nav-toggle { position: relative; z-index: 75; }

  /* Overlay: fade + blur */
  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open { 
    overflow: hidden; 
  }

  /* Drawer panel (desno) */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(360px, 88vw);
    max-width: 100vw;
    z-index: 65;

    display: flex;
    flex-direction: column;
    gap: 10px;

    padding: 18px 16px;

    border-left: 1px solid color-mix(in oklab, var(--accent) 18%, var(--border));
    background:
      linear-gradient(180deg,
        color-mix(in oklab, var(--bg) 82%, transparent),
        color-mix(in oklab, var(--bg) 74%, transparent)
      );
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);

    transform: translateX(110%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

    body.nav-open .nav-toggle {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 80; /* iznad drawer-a */
  }

  /* Spusti stavke menija da ne ulaze pod X dugme */
  .nav {
    padding-top: 72px; /* 40px dugme + margina + malo prostora */
  }


  .site-header.nav-open .nav { transform: translateX(0); }

  /* Nav items: modern “pill” */
  .nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;

    padding: 12px 12px;
    border-radius: 14px;

    color: var(--text);
    text-decoration: none;

    border: 1px solid var(--border);
    background: linear-gradient(
      180deg,
      color-mix(in oklab, var(--panel) 92%, transparent),
      color-mix(in oklab, var(--panel2) 70%, transparent)
    );

    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  }

  .nav a:hover {
    transform: translateY(-1px);
    border-color: color-mix(in oklab, var(--accent) 45%, var(--border));
    background: linear-gradient(
      180deg,
      color-mix(in oklab, var(--panel2) 85%, transparent),
      color-mix(in oklab, var(--panel) 65%, transparent)
    );
  }

  .nav a.active {
    border-color: color-mix(in oklab, var(--accent) 55%, var(--border));
    background: linear-gradient(
      135deg,
      color-mix(in oklab, var(--accent) 18%, var(--panel)),
      color-mix(in oklab, var(--accent2) 12%, var(--panel2))
    );
  }

  .nav-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 4px;
    border-radius: 999px;
  }

  /* CTA u drawer-u (Pozovi) */
  .nav .btn,
  .nav .btn-primary {
    margin-top: 0; /* jer ti .btn-primary ima margin-top: 20px globalno [file:8] */
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .nav-call {
    box-shadow: 0 16px 42px rgba(245, 158, 11, 0.22);
  }
}

/* Desktop: standardni layout */
@media (min-width: 760px) {
  .site-header { z-index: 50; } /* vrati kako je bilo */
  .header-cta { display: flex; }
  .nav-toggle { display: none; }
  .nav-overlay { display: none; }

  .nav {
    position: static;
    height: auto;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
    transition: none;

    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .nav-divider,
  .nav-call { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;

  font: inherit;
}

.btn:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--accent) 80%, white);
  outline-offset: 2px;
}

.btn-primary,
.btn-ghost {
  border: 0;
  background: linear-gradient(
    135deg,
    var(--accent),
    color-mix(in oklab, var(--accent2) 65%, var(--accent))
  );
  color: white;
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.22);
  margin-top: 20px;
}

/* Viber dugme */
.btn-viber {
  border: 0;
  color: white;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 12px 28px rgba(168, 85, 247, 0.22);
  margin-top: 20px; /* usklađeno sa .btn-primary/.btn-ghost */
}

/* Stil Viber ikonice u dugmetu */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

/* DODATI: ista hover animacija za sva dugmad (.btn) */
.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

/* DODATI (opciono): animacija i za icon dugmad, hamburger meni, X dugme */
.icon-btn {
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
}

.icon-btn:active {
  transform: translateY(0);
}

.btn-ghost:hover {
  background: var(--panel);
}

/* Hero */
.hero {
  padding: 56px 0 10px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.hero .hero-grid > div:first-child {
  text-align: center;
  margin-inline: auto;
}

.hero .lead {
  margin-inline: auto;
}

.pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 14px;
}

h1 {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
  margin: 0 0 12px;
}

.lead {
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}

/* Sections */
.section {
  padding: 26px 0;
}

.section-alt {
  background: transparent;
  border: none;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-size: 22px;
}

.muted {
  color: var(--muted);
  margin: 6px 0 0;
}

.small {
  font-size: 13px;
}

/* Grid & Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 12px;
}

.card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel), color-mix(in oklab, var(--panel2) 65%, transparent));
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  min-height: 120px;
  text-align: left;
}

.card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--accent) 45%, var(--border));
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.card-title {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

.card-meta {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--accent) 15%, var(--panel));
  border: 1px solid color-mix(in oklab, var(--accent) 25%, var(--border));
  color: var(--text);
}

/* Info card */
.hero-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel), color-mix(in oklab, var(--panel2) 70%, transparent));
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.info-k {
  color: var(--muted);
  font-size: 13px;
}

/* Radno vreme (lepši prikaz + status) */
.hours {
  display: grid;
  gap: 10px;
}

.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--panel2) 70%, transparent);

  font-size: 13px;
  color: var(--muted);
}

/* 
.hours-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.95);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
} 
*/

.hours-status[data-open="true"] {
  color: var(--text);
  border-color: color-mix(in oklab, #22c55e 45%, var(--border));
  background: color-mix(in oklab, #22c55e 10%, var(--panel2));
}

.hours-status[data-open="true"] .hours-dot {
  background: rgba(34, 197, 94, 0.95);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

.hours-list {
  display: grid;
  gap: 8px;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 10px 12px;
  border-radius: 14px;

  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--panel) 78%, transparent);
}

.hours-day {
  color: var(--muted);
  font-size: 13px;
}

.hours-time {
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
}


.link {
  color: color-mix(in oklab, var(--accent) 75%, var(--text));
}

.link:hover {
  text-decoration: underline;
}

.link-btn {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: color-mix(in oklab, var(--accent) 75%, var(--text));
  cursor: pointer;
}

.link-btn:hover {
  text-decoration: underline;
}

.link-btn:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--accent) 80%, white);
  outline-offset: 2px;
  border-radius: 10px;
}


.mini-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.form {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius);
  padding: 14px;
}

label {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

input,
textarea {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--panel2) 70%, transparent);
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
}

input:focus-visible,
textarea:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--accent) 65%, white);
  outline-offset: 2px;
}


.form-error {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid color-mix(in oklab, var(--accent) 45%, var(--border));
  background: color-mix(in oklab, var(--accent) 12%, var(--panel));
  color: var(--text);
}

/* Footer */
.site-footer {
  padding: 20px 0;
  border-top: none;
}

.site-footer p {
  font-size: 16px;
}


.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 14px;
  color: var(--muted);
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-brand {
  margin-bottom: 8px;
}

/* Modal */
.modal {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  background: color-mix(in oklab, var(--bg) 88%, black);
  color: var(--text);
  box-shadow: var(--shadow);
  padding: 14px;
  width: min(680px, calc(100% - 26px));
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.modal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
}

.modal-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--panel2) 70%, transparent);
  color: var(--text);
  font-size: 13px;
  line-height: 1.1;
}

.modal-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 18px rgba(245, 158, 11, 0.18);
}

.modal-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.modal-list li {
  margin: 6px 0;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* Map */
.map-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

/* Layout breakpoints */
@media (min-width: 760px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
  }

  .map-wrap iframe {
    height: 420px;
  }
}

@media (min-width: 1020px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes backdropIn {
  from {
    background: rgba(0, 0, 0, 0);
  }
  to {
    background: rgba(0, 0, 0, 0.55);
  }
}

@keyframes sectionPulse {
  0% {
    outline: 2px solid rgba(245, 158, 11, 0);
    box-shadow: 0 0 0 rgba(245, 158, 11, 0);
  }
  35% {
    outline: 2px solid rgba(245, 158, 11, 0.55);
    box-shadow: 0 18px 48px rgba(245, 158, 11, 0.18);
  }
  100% {
    outline: 2px solid rgba(245, 158, 11, 0);
    box-shadow: 0 0 0 rgba(245, 158, 11, 0);
  }
}

.hero h1,
.hero .lead,
.hero .hero-actions,
.hero .pill {
  animation: fadeUp 0.55s ease both;
}

.hero .lead {
  animation-delay: 0.06s;
}

.hero .hero-actions {
  animation-delay: 0.12s;
}

.card-animate {
  animation: fadeUp 0.45s ease both;
}

.modal[open] {
  animation: modalIn 0.18s ease both;
}

.modal[open]::backdrop {
  animation: backdropIn 0.18s ease both;
}

.section-focus {
  border-radius: var(--radius);
  animation: sectionPulse 0.65s ease;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Smooth scroll (native) */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Sticky header offset for anchors */
#ponuda,
#info,
#kontakt,
#mapa {
  scroll-margin-top: 90px;
}

/* ===== Scroll-reveal (kao kartice, ali za ostale blokove) ===== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(3px);
  will-change: transform, opacity, filter;
}

.reveal-on-scroll.revealed {
  /* koristi tvoj postojeći fadeUp keyframes */
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ===== Mikro-interakcije (da “diše” kao .card) ===== */
.info-item,
.hours-row,
.form,
.map-wrap {
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.info-item:hover,
.hours-row:hover {
  transform: translateY(-1px);
  border-color: color-mix(in oklab, var(--accent) 38%, var(--border));
  background: color-mix(in oklab, var(--panel2) 70%, transparent);
}

/* Fokus u formi – suptilan “lift” i naglasak */
.form:focus-within {
  transform: translateY(-1px);
  border-color: color-mix(in oklab, var(--accent) 40%, var(--border));
}

/* (opciono) modal chip hover – sitno, ali premium */
.modal-chip {
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.modal-chip:hover {
  transform: translateY(-1px);
  border-color: color-mix(in oklab, var(--accent) 35%, var(--border));
  background: color-mix(in oklab, var(--panel2) 78%, transparent);
}

/* default: ništa ne skrivaj */
.reveal-on-scroll { opacity: 1; transform: none; filter: none; }

/* samo kad JS radi, onda koristi sakrivanje + animaciju */
.js .reveal-on-scroll {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(3px);
  will-change: transform, opacity, filter;
}

.js .reveal-on-scroll.revealed {
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

