/* Frizerski salon Daca — stilovi */

/* ---------------------------------------------------------------
   1. TOKENI
   --------------------------------------------------------------- */
:root {
  /* --- Površine --- */
  --bg:        #f7f9fc;   /* pozadina strane, bela sa plavim tonom */
  --surface:   #ffffff;   /* kartice */
  --surface-2: #eef3fa;   /* meka plava traka */
  --surface-3: #e1e9f4;   /* dublja glina */
  --tint:      #e9f0fa;   /* podloga akcenta */

  /* --- Tekst --- */
  --ink:   #0f1b2d;       /* naslovi i glavni tekst — 16,4:1 */
  --ink-2: #46566e;       /* sekundarni — 7,0:1 */
  --ink-3: #5e6e86;       /* tercijarni — 4,9:1 */

  /* --- Akcenat: plava --- */
  --blue:      #1e5aa8;   /* linkovi, ikone, cene, dugmad — 6,5:1 */
  --blue-deep: #17457f;   /* hover i naglašeno */
  --blue-mid:  #5b95d9;   /* detalji */
  --blue-soft: #b7cfea;   /* tanke linije */

  /* --- Linije --- */
  --line:   rgba(15, 27, 45, 0.10);
  --line-2: rgba(15, 27, 45, 0.17);

  /* --- Semantika --- */
  --ok:   #2f7a4d;
  --warn: #a86a1c;
  --err:  #b23b32;

  /* --- Pomocni nazivi --- */
  --text-hi: var(--ink);
  --text-mid: var(--ink-2);
  --text-lo: var(--ink-3);
  --text-on-paper: var(--ink);
  --text-on-paper-mid: var(--ink-2);
  --text-on-paper-lo: var(--ink-3);
  --brass-400: var(--blue);
  --brass-500: var(--blue);
  --brass-600: var(--blue);
  --brass-tint: var(--tint);
  --blood-500: var(--blue-deep);
  --ink-850: var(--surface-2);
  --ok-500: var(--ok);
  --line-strong: var(--line-2);
  --line-on-paper: var(--line);

  /* --- Tipografija --- */
  --font-display: "Newsreader", "Iowan Old Style", Georgia, serif;
  --font-body: "Plus Jakarta Sans", ui-sans-serif, system-ui, "Segoe UI", sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --step-1:  clamp(1.2rem, 1.11rem + 0.4vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.3rem + 0.72vw, 1.9rem);
  --step-3:  clamp(1.75rem, 1.48rem + 1.32vw, 2.55rem);
  --step-4:  clamp(2.05rem, 1.6rem + 2.2vw, 3.3rem);
  --step-5:  clamp(2.5rem, 1.75rem + 3.6vw, 4.3rem);
  --step-6:  clamp(2.8rem, 1.65rem + 5.6vw, 5.2rem);

  /* --- Prostor --- */
  --sp-1: 0.25rem; --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;    --sp-10: 8rem;
  --section-y: clamp(4rem, 2.8rem + 6vw, 8rem);

  /* --- Geometrija --- */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 26px;
  --r-pill: 999px;
  --shell: 1200px;
  --shell-narrow: 740px;
  --gutter: clamp(1.15rem, 0.6rem + 2.6vw, 2.75rem);

  /* --- Senke --- */
  --clay-1: 0 1px 2px rgba(15, 27, 45, 0.04),  0 2px 6px rgba(15, 27, 45, 0.05);
  --clay-2: 0 2px 4px rgba(15, 27, 45, 0.04),  0 8px 20px rgba(15, 27, 45, 0.065);
  --clay-3: 0 4px 8px rgba(15, 27, 45, 0.045), 0 18px 40px rgba(15, 27, 45, 0.085);
  --clay-4: 0 8px 16px rgba(15, 27, 45, 0.055),0 34px 70px rgba(15, 27, 45, 0.11);

  /* --- Animacije --- */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-1: 120ms;
  --dur-2: 180ms;
  --dur-3: 240ms;
  --dur-reveal: 620ms;

  --z-header: 100;
  --z-drawer: 200;
  --z-lightbox: 300;

  color-scheme: light;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, svg, video, canvas, iframe { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; letter-spacing: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

/* --- Površine pretraživača --- */
::selection { background: var(--tint); color: var(--ink); }
:root { accent-color: var(--blue); caret-color: var(--blue); }

html { scrollbar-color: #c2d1e3 var(--bg); scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #c2d1e3; border-radius: var(--r-pill); border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #a9bed6; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ---------------------------------------------------------------
   3. TIPOGRAFIJA
   --------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.018em;
  text-wrap: balance;
  font-optical-sizing: auto;
  color: var(--ink);
}
h1 { font-size: var(--step-5); font-weight: 500; }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); line-height: 1.22; letter-spacing: -0.014em; }
h4 { font-size: var(--step-1); line-height: 1.3; letter-spacing: -0.01em; }

p { text-wrap: pretty; }

.lead {
  font-size: var(--step-1);
  line-height: 1.58;
  color: var(--ink-2);
  font-weight: 400;
  max-width: 48ch;
  letter-spacing: -0.008em;
}
.prose { max-width: 68ch; }
.prose p { color: var(--ink-2); }
.prose p + p { margin-top: 1.05em; }

.u-mono-nums { font-variant-numeric: tabular-nums; }

.section-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
}
.section-mark::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-soft);
}

/* ---------------------------------------------------------------
   4. LAYOUT
   --------------------------------------------------------------- */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.shell--narrow { max-width: var(--shell-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 2rem + 3.5vw, 5rem); }

.section--paper,
.section--tint { background: var(--surface-2); }

.rule { height: 1px; background: var(--line); border: 0; }

.skip-link {
  position: absolute;
  left: var(--sp-4); top: var(--sp-4);
  z-index: 999;
  transform: translateY(-200%);
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 1.1rem;
  border-radius: var(--r-sm);
  transition: transform var(--dur-2) var(--ease-out);
}
.skip-link:focus-visible { transform: translateY(0); }

/* ---------------------------------------------------------------
   5. DUGMAD
   --------------------------------------------------------------- */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: #fff;
  --btn-bd: transparent;
  --btn-sh: 0 1px 2px rgba(15,27,45,.08), 0 6px 16px rgba(30,90,168,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.78rem 1.4rem;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  box-shadow: var(--btn-sh);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.004em;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--dur-2) var(--ease-out),
    border-color var(--dur-2) var(--ease-out),
    color var(--dur-2) var(--ease-out),
    box-shadow var(--dur-3) var(--ease-out),
    transform var(--dur-2) var(--ease-out);
}
.btn .icon { width: 19px; height: 19px; flex: none; }
.btn:active { transform: translateY(0) scale(0.985); }

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    background: var(--blue-deep);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(15,27,45,.08), 0 12px 26px rgba(30,90,168,.26);
  }
}

.btn--ghost {
  --btn-bg: var(--surface);
  --btn-fg: var(--ink);
  --btn-bd: var(--line-2);
  --btn-sh: var(--clay-1);
}
@media (hover: hover) and (pointer: fine) {
  .btn--ghost:hover { background: var(--surface); border-color: var(--blue-soft); color: var(--blue-deep); transform: translateY(-1px); box-shadow: var(--clay-2); }
}

.btn--ink { --btn-bg: var(--ink); --btn-fg: #fff; --btn-sh: var(--clay-2); }
@media (hover: hover) and (pointer: fine) { .btn--ink:hover { background: #1b2c46; } }

.btn--on-paper-ghost {
  --btn-bg: var(--surface);
  --btn-fg: var(--ink);
  --btn-bd: var(--line-2);
  --btn-sh: var(--clay-1);
}
@media (hover: hover) and (pointer: fine) {
  .btn--on-paper-ghost:hover { border-color: var(--blue-soft); color: var(--blue-deep); transform: translateY(-1px); box-shadow: var(--clay-2); }
}

.btn--lg { min-height: 54px; padding: 0.9rem 1.75rem; font-size: 1rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue);
  min-height: 44px;
  padding-block: 0.5rem;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  transition: color var(--dur-2) var(--ease-out);
}
.link-arrow .icon { width: 16px; height: 16px; transition: transform var(--dur-3) var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .link-arrow:hover { color: var(--blue-deep); text-decoration: underline; }
  .link-arrow:hover .icon { transform: translate(2px, -2px); }
}

/* ---------------------------------------------------------------
   6. HEADER
   --------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(247, 249, 252, 0.72);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--dur-3) var(--ease-out),
    border-color var(--dur-3) var(--ease-out),
    box-shadow var(--dur-3) var(--ease-out);
}
.header.is-stuck {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 26px rgba(15, 27, 45, 0.06);
}

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  height: 76px;
  transition: height var(--dur-3) var(--ease-out);
}
.header.is-stuck .header__bar { height: 64px; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; flex: none; min-height: 44px; }
.brand__mark { width: 38px; height: 38px; flex: none; transition: transform var(--dur-3) var(--ease-out); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.brand__sub {
  font-family: var(--font-body);
  font-size: 0.575rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 5px;
}
@media (hover: hover) and (pointer: fine) { .brand:hover .brand__mark { transform: rotate(-6deg); } }

.nav { display: none; }
@media (min-width: 900px) { .nav { display: flex; align-items: center; gap: 0.2rem; } }

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 0.9rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink-2);
  transition: color var(--dur-2) var(--ease-out), background-color var(--dur-2) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .nav__link:hover { color: var(--blue-deep); background: var(--tint); }
}
.nav__link[aria-current="page"] { color: var(--ink); font-weight: 700; }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0.14rem;
  width: 16px; height: 2px;
  border-radius: 2px;
  transform: translateX(-50%);
  background: var(--blue);
}

.header__actions { display: flex; align-items: center; gap: 0.5rem; flex: none; }

.header__phone {
  display: none;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--ink);
  padding: 0.5rem 0.7rem;
  border-radius: var(--r-sm);
  font-variant-numeric: tabular-nums;
  transition: color var(--dur-2) var(--ease-out);
}
.header__phone .icon { width: 17px; height: 17px; color: var(--blue); }
@media (min-width: 1080px) { .header__phone { display: inline-flex; } }
@media (hover: hover) and (pointer: fine) { .header__phone:hover { color: var(--blue-deep); } }

.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--clay-1);
  transition: background-color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.icon-btn .icon { width: 20px; height: 20px; }
@media (hover: hover) and (pointer: fine) {
  .icon-btn:hover { border-color: var(--blue-soft); box-shadow: var(--clay-2); }
}
.icon-btn--brass { background: var(--blue); color: #fff; border-color: transparent; }
@media (hover: hover) and (pointer: fine) {
  .icon-btn--brass:hover { background: var(--blue-deep); border-color: transparent; }
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
@media (min-width: 1080px) { .icon-btn--phone { display: none; } }

/* Mobilna fioka */
.drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--bg);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity var(--dur-3) var(--ease-out),
    transform var(--dur-3) var(--ease-out),
    visibility 0s linear var(--dur-3);
}
.drawer[data-open="true"] { visibility: visible; opacity: 1; transform: translateY(0); transition-delay: 0s; }

.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  border-bottom: 1px solid var(--line);
}
.drawer__body {
  overflow-y: auto;
  padding-block: var(--sp-6) var(--sp-8);
  display: flex; flex-direction: column; gap: var(--sp-6);
}
.drawer__nav { display: flex; flex-direction: column; }
.drawer__link {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-4);
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 500;
  letter-spacing: -0.016em;
  color: var(--ink-2);
  opacity: 0;
  transform: translateY(8px);
}
.drawer[data-open="true"] .drawer__link {
  opacity: 1; transform: translateY(0);
  transition: opacity 380ms var(--ease-out), transform 380ms var(--ease-out), color var(--dur-2) var(--ease-out);
  transition-delay: calc(50ms + var(--i, 0) * 40ms);
}
.drawer__link[aria-current="page"] { color: var(--ink); }
.drawer__link .idx { font-family: var(--font-body); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; color: var(--blue); }

.drawer__meta { display: flex; flex-direction: column; gap: var(--sp-3); color: var(--ink-2); font-size: 0.94rem; }
.drawer__meta a { display: inline-flex; align-items: center; gap: 0.6rem; min-height: 44px; padding: 0.4rem 0; }
.drawer__meta .icon { width: 18px; height: 18px; color: var(--blue); flex: none; }

body.is-locked { overflow: hidden; }

/* ---------------------------------------------------------------
   7. STATUS ČIP
   --------------------------------------------------------------- */
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.95rem 0.42rem 0.75rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--clay-1);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-3); flex: none; position: relative; }
.status[data-state="open"] .status__dot { background: var(--ok); }
.status[data-state="open"] .status__dot::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--ok);
  opacity: 0;
  animation: pulse 3s var(--ease-out) infinite;
}
.status[data-state="soon"] .status__dot { background: var(--warn); }
.status[data-state="closed"] .status__dot { background: #a8b6c9; }

@keyframes pulse {
  0%   { opacity: 0.55; transform: scale(0.75); }
  70%, 100% { opacity: 0; transform: scale(1.45); }
}
@media (prefers-reduced-motion: reduce) {
  .status[data-state="open"] .status__dot::after { animation: none; }
}

/* ---------------------------------------------------------------
   8. HERO
   --------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(2.75rem, 1.5rem + 5vw, 5.5rem) clamp(3rem, 2rem + 5vw, 6rem);
  overflow: hidden;
}
/* Mek plavi sjaj u pozadini */
.hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: min(80vw, 820px);
  aspect-ratio: 1;
  background: radial-gradient(circle at center, rgba(91, 149, 217, 0.22) 0%, rgba(233, 240, 250, 0.6) 42%, transparent 70%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 1rem + 5vw, 4rem);
  align-items: center;
}
@media (min-width: 940px) { .hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); } }

.hero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-5); }
.hero h1 { font-size: var(--step-6); font-weight: 500; letter-spacing: -0.024em; line-height: 1.05; }
.hero h1 em { font-style: italic; color: var(--blue); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.hero__facts {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.55rem 1.4rem;
  padding-top: var(--sp-3);
  font-size: 0.895rem;
  color: var(--ink-2);
}
.hero__fact { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero__fact .icon { width: 17px; height: 17px; color: var(--blue); flex: none; }
.hero__fact strong { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }

.hero__visual { position: relative; }

/* --- Okvir za fotografiju --- */
.frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface-3);
  box-shadow: var(--clay-4);
}
.frame::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  pointer-events: none;
}
.frame img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 1; }
.frame--portrait { aspect-ratio: 4 / 5; }
.frame--landscape { aspect-ratio: 3 / 2; }
.frame--square { aspect-ratio: 1; }

.frame__ph {
  position: absolute; inset: 0;
  display: grid; place-content: center; justify-items: center;
  gap: 0.8rem; text-align: center; padding: var(--sp-5);
  color: var(--ink-3);
  background:
    radial-gradient(120% 90% at 28% 14%, rgba(255, 255, 255, 0.9), transparent 62%),
    linear-gradient(158deg, var(--surface-3), #d3e0ef);
}
.frame__ph .icon { width: 32px; height: 32px; color: var(--blue); opacity: 0.6; }
.frame__ph span { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }

.hero__badge { position: absolute; left: clamp(-0.25rem, -0.5vw, 0.5rem); bottom: clamp(1rem, 3vw, 1.6rem); z-index: 2; }

.hero__stamp {
  position: absolute;
  z-index: 2;
  right: clamp(-0.5rem, -1vw, 0rem);
  top: clamp(-0.5rem, -1vw, 0rem);
  width: clamp(88px, 11vw, 116px);
  height: clamp(88px, 11vw, 116px);
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--clay-3);
  text-align: center;
  line-height: 1.05;
}
.hero__stamp b {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 1.95rem);
  font-weight: 600;
  letter-spacing: -0.028em;
  font-variant-numeric: tabular-nums;
  display: block;
  color: var(--blue);
}
.hero__stamp span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.565rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}

/* ---------------------------------------------------------------
   9. TRAKA SA USLUGAMA
   --------------------------------------------------------------- */
.strip {
  border-block: 1px solid var(--line);
  background: var(--surface);
  padding-block: 1.1rem;
  overflow: hidden;
}
.strip__track {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0.5rem 1.9rem;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.strip__track > span {
  display: inline-flex; align-items: center; gap: 1.9rem;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}
.strip__track > span::after {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue-soft);
  flex: none;
}
.strip__track > span:last-child::after { display: none; }

/* ---------------------------------------------------------------
   10. GLAVA SEKCIJE
   --------------------------------------------------------------- */
.sec-head { display: grid; gap: var(--sp-4); margin-bottom: clamp(2.25rem, 1.5rem + 2.5vw, 3.5rem); }
@media (min-width: 860px) {
  .sec-head--split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: end;
  }
}
.sec-head__aside { display: flex; flex-direction: column; gap: var(--sp-4); align-items: flex-start; }
.sec-head__aside p { color: var(--ink-2); max-width: 42ch; }

/* ---------------------------------------------------------------
   11. CENOVNIK
   --------------------------------------------------------------- */
.menu {
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--clay-2);
  padding-inline: clamp(1.1rem, 2.6vw, 2rem);
  overflow: hidden;
}
.menu__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 0.35rem 1.25rem;
  padding: clamp(1.05rem, 2vw, 1.45rem) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.menu__row:last-child { border-bottom: 0; }
@media (hover: hover) and (pointer: fine) {
  .menu__row:hover .menu__name { color: var(--blue-deep); }
}

.menu__name {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.28;
  transition: color var(--dur-2) var(--ease-out);
}
.menu__desc { grid-column: 1; font-size: 0.915rem; color: var(--ink-3); line-height: 1.58; max-width: 52ch; margin-top: 0.25rem; }

.menu__price {
  grid-row: 1; grid-column: 2;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.016em;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.menu__price small { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.07em; color: var(--ink-3); margin-left: 0.25rem; }

.menu__tag {
  display: inline-block;
  margin-left: 0.55rem;
  vertical-align: 0.18em;
  font-family: var(--font-body);
  font-size: 0.595rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.26rem 0.58rem;
  border-radius: var(--r-pill);
  background: var(--tint);
  color: var(--blue);
}

.menu__note {
  margin-top: var(--sp-5);
  font-size: 0.885rem;
  color: var(--ink-3);
  display: flex; gap: 0.6rem; align-items: flex-start;
  max-width: 64ch;
  line-height: 1.6;
}
.menu__note .icon { width: 18px; height: 18px; flex: none; margin-top: 0.22rem; color: var(--blue); }

/* ---------------------------------------------------------------
   12. MREŽA USLUGA
   --------------------------------------------------------------- */
.svc-grid { display: grid; gap: clamp(0.85rem, 1.6vw, 1.25rem); }
@media (min-width: 680px)  { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .svc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.svc {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--clay-1);
  padding: clamp(1.4rem, 2.6vw, 1.9rem);
  display: flex; flex-direction: column; gap: 0.75rem;
  min-height: 100%;
  transition: box-shadow var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .svc:hover { box-shadow: var(--clay-3); transform: translateY(-3px); }
  .svc:hover .svc__icon { background: var(--blue); color: #fff; }
}
.svc__icon {
  width: 44px; height: 44px;
  padding: 10px;
  border-radius: var(--r-md);
  background: var(--tint);
  color: var(--blue);
  transition: background-color var(--dur-3) var(--ease-out), color var(--dur-3) var(--ease-out);
}
.svc h3 { font-size: var(--step-1); }
.svc p { color: var(--ink-2); font-size: 0.93rem; line-height: 1.65; flex: 1; }
.svc__foot {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-4);
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}
.svc__price {
  font-family: var(--font-body);
  font-size: 1.28rem; font-weight: 700; letter-spacing: -0.018em;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.svc__price small { font-size: 0.61rem; font-weight: 700; letter-spacing: 0.07em; color: var(--ink-3); margin-left: 0.2rem; }
.svc__time { font-size: 0.8rem; color: var(--ink-3); display: inline-flex; align-items: center; gap: 0.35rem; font-variant-numeric: tabular-nums; }
.svc__time .icon { width: 15px; height: 15px; }

/* ---------------------------------------------------------------
   13. GALERIJA
   --------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.6rem, 1.3vw, 1rem);
}
@media (min-width: 760px) {
  .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-flow: row dense; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 2; }
}

.gallery__item {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-3);
  aspect-ratio: 1;
  cursor: zoom-in;
  box-shadow: var(--clay-1);
  isolation: isolate;
  transition: box-shadow var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out);
}
.gallery__item--tall { aspect-ratio: 1 / 2; }
.gallery__item--wide { aspect-ratio: 2 / 1; }
@media (max-width: 759px) { .gallery__item--tall, .gallery__item--wide { aspect-ratio: 1; } }

.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-soft); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15, 27, 45, 0.6), transparent 48%);
  opacity: 0;
  transition: opacity var(--dur-3) var(--ease-out);
}
.gallery__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 0.85rem 1rem;
  font-size: 0.81rem; font-weight: 700;
  color: #fff;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .gallery__item:hover { box-shadow: var(--clay-3); transform: translateY(-2px); }
  .gallery__item:hover img { transform: scale(1.035); }
  .gallery__item:hover::after, .gallery__item:hover .gallery__cap { opacity: 1; }
  .gallery__item:hover .gallery__cap { transform: translateY(0); }
}
.gallery__item:focus-visible .gallery__cap { opacity: 1; transform: translateY(0); }
.gallery__item:focus-visible::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: var(--z-lightbox);
  border: 0; padding: 0;
  max-width: 100%; max-height: 100%;
  width: 100%; height: 100%;
  background: transparent;
  color: var(--ink);
}
.lightbox::backdrop { background: rgba(15, 27, 45, 0.6); backdrop-filter: blur(10px); }
.lightbox__inner { height: 100%; display: grid; grid-template-rows: auto 1fr auto; padding: clamp(0.75rem, 2vw, 1.5rem); gap: var(--sp-4); }
.lightbox__bar { display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4); }
.lightbox__count { font-size: 0.84rem; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.lightbox__stage { display: grid; place-items: center; min-height: 0; }
.lightbox__stage img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; border-radius: var(--r-lg); box-shadow: var(--clay-4); background: var(--surface); }
.lightbox__foot { display: flex; align-items: center; justify-content: center; gap: var(--sp-4); }
.lightbox__cap { font-size: 0.9rem; color: #fff; text-align: center; }
.lightbox[open] .lightbox__stage img { animation: lb-in 260ms var(--ease-out) both; }
@keyframes lb-in { from { opacity: 0; transform: scale(0.975); } to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .lightbox[open] .lightbox__stage img { animation: none; } }

/* ---------------------------------------------------------------
   14. RECENZIJE
   --------------------------------------------------------------- */
.reviews { display: grid; gap: clamp(0.9rem, 1.8vw, 1.35rem); }
@media (min-width: 780px)  { .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .reviews { grid-template-columns: repeat(12, minmax(0, 1fr)); } }

.review {
  display: flex; flex-direction: column; gap: 0.95rem;
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--clay-1);
  transition: transform var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .review:hover { transform: translateY(-3px); box-shadow: var(--clay-3); }
}
@media (min-width: 1080px) {
  .review--lead { grid-column: span 7; }
  .review--a { grid-column: span 5; }
  .review--b { grid-column: span 5; }
  .review--c { grid-column: span 7; }
}
.review--lead { background: linear-gradient(158deg, #ffffff, var(--tint)); }
.review--lead blockquote { font-size: var(--step-2); }

.review blockquote {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.008em;
  color: var(--ink);
}
.stars { display: inline-flex; gap: 2px; color: var(--blue); }
.stars .icon { width: 15px; height: 15px; }

.review__by { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; padding-top: 0.3rem; }
.review__avatar {
  width: 38px; height: 38px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--tint);
  color: var(--blue);
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.83rem;
  letter-spacing: 0.02em;
}
.review__meta { display: flex; flex-direction: column; line-height: 1.3; }
.review__name { font-weight: 700; font-size: 0.92rem; }
.review__src { font-size: 0.78rem; color: var(--ink-3); }

.rating-summary {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.8rem 1.3rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--clay-1);
}
.rating-summary__score {
  font-family: var(--font-display);
  font-size: 2.45rem; font-weight: 600; letter-spacing: -0.035em; line-height: 1;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.rating-summary__txt { display: flex; flex-direction: column; gap: 0.3rem; }
.rating-summary__txt span { font-size: 0.86rem; color: var(--ink-3); }

/* ---------------------------------------------------------------
   15. SPLIT
   --------------------------------------------------------------- */
.split { display: grid; gap: clamp(2rem, 1rem + 4.5vw, 4rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .split--media-first > .split__media { order: -1; }
  .split--wide-copy { grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); }
}
.split__copy { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-5); }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: var(--sp-5) var(--sp-6);
  width: 100%;
  padding-top: var(--sp-2);
}
.stat { display: flex; flex-direction: column; gap: 0.15rem; }
.stat b {
  font-family: var(--font-display);
  font-size: var(--step-3); font-weight: 600; letter-spacing: -0.03em; line-height: 1;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.stat span { font-size: 0.84rem; color: var(--ink-3); line-height: 1.45; }

.checks { display: flex; flex-direction: column; gap: 0.85rem; width: 100%; }
.checks li { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--ink-2); line-height: 1.6; }
.checks .icon { width: 21px; height: 21px; flex: none; color: var(--blue); margin-top: 0.16rem; }
.checks strong { color: var(--ink); font-weight: 700; }

/* ---------------------------------------------------------------
   16. FAQ
   --------------------------------------------------------------- */
.faq {
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--clay-2);
  padding-inline: clamp(1.1rem, 2.6vw, 2rem);
  overflow: hidden;
}
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 0; }

.faq__q {
  width: 100%;
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-5);
  padding: clamp(1.1rem, 2.1vw, 1.45rem) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.35;
  color: var(--ink);
  transition: color var(--dur-2) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .faq__q:hover { color: var(--blue-deep); } }

.faq__sign {
  flex: none;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--tint);
  color: var(--blue);
  margin-top: 0.12rem;
  transition: transform var(--dur-3) var(--ease-out), background-color var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out);
}
.faq__sign .icon { width: 15px; height: 15px; }
.faq__q[aria-expanded="true"] .faq__sign { transform: rotate(180deg); background: var(--blue); color: #fff; }

.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-3) var(--ease-out); }
.faq__a > div { overflow: hidden; }
.faq__a[data-open="true"] { grid-template-rows: 1fr; }
.faq__a p { color: var(--ink-2); padding-bottom: 1.35rem; max-width: 68ch; font-size: 0.975rem; }
.faq__a p + p { margin-top: 0.75rem; }
@media (prefers-reduced-motion: reduce) { .faq__a { transition: none; } }

/* ---------------------------------------------------------------
   18. KONTAKT INFO / MAPA
   --------------------------------------------------------------- */
.contact-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 960px) { .contact-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); align-items: start; } }

.info-list {
  display: flex; flex-direction: column;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--clay-2);
  padding-inline: clamp(1.1rem, 2.4vw, 1.6rem);
}
.info-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.3rem 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.info-item:last-child { border-bottom: 0; }
.info-item__icon {
  grid-row: span 2;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--tint);
  color: var(--blue);
  flex: none;
}
.info-item__icon .icon { width: 19px; height: 19px; }
.info-item dt { font-size: 0.695rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.info-item dd { margin: 0; font-size: 1.04rem; font-weight: 600; color: var(--ink); letter-spacing: -0.008em; }
.info-item dd a { text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; transition: text-decoration-color var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .info-item dd a:hover { color: var(--blue); text-decoration-color: currentColor; }
}
.info-item dd small { display: block; font-size: 0.84rem; font-weight: 400; color: var(--ink-3); margin-top: 0.2rem; line-height: 1.5; }

/* Radno vreme */
.hours {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--clay-2);
  overflow: hidden;
}
.hours caption {
  text-align: left;
  font-size: 0.695rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
  padding: 1.1rem clamp(1.1rem, 2.4vw, 1.6rem) 0.6rem;
}
.hours th, .hours td {
  padding: 0.7rem clamp(1.1rem, 2.4vw, 1.6rem);
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.945rem;
}
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours th { font-weight: 500; color: var(--ink-2); }
.hours td { text-align: right; font-weight: 700; color: var(--ink); }
.hours tr[data-today="true"] { background: var(--tint); }
.hours tr[data-today="true"] th { color: var(--blue-deep); font-weight: 700; }
.hours tr[data-today="true"] td { color: var(--blue-deep); }
.hours td[data-closed="true"] { color: var(--ink-3); font-weight: 500; }

/* Mapa */
.map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-3);
  box-shadow: var(--clay-2);
  aspect-ratio: 16 / 11;
  min-height: 300px;
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map__cover {
  position: absolute; inset: 0;
  display: grid; place-content: center; justify-items: center;
  gap: 0.9rem;
  padding: var(--sp-5);
  text-align: center;
  background:
    radial-gradient(110% 80% at 50% 8%, rgba(255, 255, 255, 0.92), transparent 62%),
    linear-gradient(160deg, var(--surface-3), #d5e2f0);
  cursor: pointer;
}
.map__cover .icon { width: 32px; height: 32px; color: var(--blue); }
.map__cover p { font-size: 0.9rem; color: var(--ink-2); max-width: 34ch; }
.map__cover[hidden] { display: none; }

/* ---------------------------------------------------------------
   19. CTA TRAKA
   --------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band--dark,
.cta-band--soft {
  background: linear-gradient(180deg, var(--surface-2), #e4ecf7);
  border-top: 1px solid var(--line);
}
.cta-band--dark::before {
  content: "";
  position: absolute;
  left: 50%; top: -70%;
  transform: translateX(-50%);
  width: min(120vw, 1100px);
  aspect-ratio: 2 / 1;
  background: radial-gradient(ellipse at center, rgba(91, 149, 217, 0.3), transparent 66%);
  filter: blur(24px);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: var(--sp-5);
  padding-block: clamp(3.25rem, 2rem + 5vw, 5.5rem);
}
.cta-band h2 { font-size: var(--step-4); max-width: 20ch; }
.cta-band p { color: var(--ink-2); max-width: 52ch; font-size: var(--step-0); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; }
.cta-band__note { font-size: 0.84rem; color: var(--ink-3); display: inline-flex; align-items: center; gap: 0.45rem; flex-wrap: wrap; justify-content: center; }

/* ---------------------------------------------------------------
   20. FOOTER
   --------------------------------------------------------------- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 2rem + 3.5vw, 4.5rem) var(--sp-6);
}
.footer__grid { display: grid; gap: clamp(2.2rem, 4vw, 3.5rem); padding-bottom: clamp(2.2rem, 4vw, 3rem); }
@media (min-width: 720px)  { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1020px) { .footer__grid { grid-template-columns: 1.5fr 0.85fr 1.1fr 1.1fr; } }

.footer__intro { display: flex; flex-direction: column; gap: var(--sp-4); align-items: flex-start; }
.footer__intro p { color: var(--ink-3); font-size: 0.91rem; max-width: 34ch; line-height: 1.65; }

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.695rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.1rem; }
.footer__links a {
  min-height: 44px;
  padding: 0.45rem 0;
  color: var(--ink-2);
  font-size: 0.935rem;
  display: inline-flex; align-items: center; gap: 0.45rem;
  width: fit-content;
  transition: color var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out);
}
.footer__links .icon { width: 16px; height: 16px; color: var(--blue); flex: none; }
@media (hover: hover) and (pointer: fine) {
  .footer__links a:hover { color: var(--blue-deep); transform: translateX(2px); }
}

.socials { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.social {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--ink-2);
  transition: color var(--dur-2) var(--ease-out), background-color var(--dur-2) var(--ease-out),
              border-color var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out),
              box-shadow var(--dur-2) var(--ease-out);
}
.social .icon { width: 19px; height: 19px; }
@media (hover: hover) and (pointer: fine) {
  .social:hover { color: #fff; background: var(--blue); border-color: transparent; transform: translateY(-2px); box-shadow: var(--clay-2); }
}

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: var(--sp-5);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--sp-4);
  font-size: 0.83rem;
  color: var(--ink-3);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 0.4rem 1.3rem; }
.footer__bottom nav a { display: inline-flex; align-items: center; min-height: 44px; }
@media (hover: hover) and (pointer: fine) { .footer__bottom a:hover { color: var(--blue); } }

/* ---------------------------------------------------------------
   21. HERO PODSTRANICA
   --------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding-block: clamp(2.75rem, 2rem + 4vw, 5rem) clamp(2.25rem, 1.5rem + 3.5vw, 4rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -65%; left: 50%;
  transform: translateX(-50%);
  width: min(110vw, 1000px);
  aspect-ratio: 2 / 1;
  background: radial-gradient(ellipse at center, rgba(91, 149, 217, 0.24), transparent 66%);
  filter: blur(20px);
  pointer-events: none;
}
.page-hero__inner { position: relative; display: flex; flex-direction: column; gap: var(--sp-5); align-items: flex-start; max-width: 62ch; }
.page-hero h1 { font-size: var(--step-5); }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.3rem; font-size: 0.79rem; color: var(--ink-3); }
.crumbs li { display: inline-flex; align-items: center; gap: 0.3rem; }
.crumbs li + li::before { content: "/"; color: #b3c3d6; margin-right: 0.15rem; }
@media (hover: hover) and (pointer: fine) { .crumbs a:hover { color: var(--blue); } }
.crumbs a { display: inline-flex; align-items: center; min-height: 44px; }
.crumbs [aria-current="page"] { color: var(--ink-2); }

/* ---------------------------------------------------------------
   22. POJAVLJIVANJE PRI SKROLU
   --------------------------------------------------------------- */
.js-reveal-on [data-reveal] { opacity: 0; transform: translateY(14px); }
.js-reveal-on [data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity var(--dur-reveal) var(--ease-soft), transform var(--dur-reveal) var(--ease-soft);
  transition-delay: var(--reveal-delay, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal-on [data-reveal] { opacity: 1; transform: none; }
  .js-reveal-on [data-reveal].is-in { transition: none; }
}

/* --- Kartica za poziv --- */
.call-card {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.3rem);
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, #ffffff, var(--tint));
  box-shadow: var(--clay-2);
  color: var(--ink);
  transition: box-shadow var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out);
}
.call-card__icon {
  flex: none;
  width: clamp(48px, 9vw, 58px);
  height: clamp(48px, 9vw, 58px);
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 90, 168, 0.28);
}
.call-card__icon .icon { width: 24px; height: 24px; }
.call-card__body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.call-card__label {
  font-size: 0.695rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.call-card__number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.2vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.call-card__go {
  margin-left: auto;
  flex: none;
  color: var(--blue);
  transition: transform var(--dur-3) var(--ease-out);
}
.call-card__go .icon { width: 22px; height: 22px; }
@media (hover: hover) and (pointer: fine) {
  .call-card:hover { box-shadow: var(--clay-3); transform: translateY(-2px); }
  .call-card:hover .call-card__go { transform: translateX(4px); }
}
.call-card:active { transform: translateY(0) scale(0.995); }

.call-alt { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.call-alt .btn { flex: 1 1 auto; min-width: 150px; }

/* --- Oznaka cene --- */
.price-soon {
  display: inline-flex;
  align-items: center;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.36rem 0.75rem;
  border-radius: var(--r-pill);
  background: var(--tint);
  color: var(--blue);
  white-space: nowrap;
}

/* --- Potpis izradjivaca --- */
.credit {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  min-height: 44px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--ink-3);
  transition: color var(--dur-2) var(--ease-out);
}
.credit__heart {
  color: var(--blue);
  font-size: 0.92em;
  transition: transform var(--dur-3) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .credit:hover { color: var(--ink); }
  .credit:hover .credit__heart { transform: scale(1.18); }
}

/* ---------------------------------------------------------------
   23. UTILITI
   --------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.u-mt-4 { margin-top: var(--sp-4); }
.u-mt-6 { margin-top: var(--sp-6); }
.u-mt-7 { margin-top: var(--sp-7); }
.u-center { text-align: center; }
.icon { width: 24px; height: 24px; flex: none; }
[hidden] { display: none !important; }

@media print {
  .header, .footer, .cta-band, .drawer, .map, .strip { display: none !important; }
  body { background: #fff; color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}
