/* ============================================================
   MB BEAUTY STUDIO – Version B
   "Editorial Kinetic" design system
   Fraunces (variable display serif) + Space Grotesk (grotesque)
   ============================================================ */

/* ── Font-loading veil ──────────────────────────────────────── */
/* The head script adds .fonts-loading before first paint; JS removes it once
   document.fonts.ready resolves, so Fraunces variation axes are already set
   and letters never visibly jump from upright to italic. */
html.fonts-loading body { opacity: 0; }

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
/* clip (not hidden): hidden turns <body> into a scroll container, which breaks
   position:fixed on mobile (the fixed nav loses its offset while scrolling) */
body { overflow-x: clip; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  /* palette – warm luxe */
  --paper:   #F1E8DA;   /* main bg, warm parchment */
  --paper-2: #EADFCD;   /* slightly deeper panel */
  --ink:     #1B1714;   /* warm near-black */
  --ink-2:   #3A332C;   /* softer ink for body */
  --gold:    #B2854C;   /* refined antique gold */
  --gold-lt: #CBA877;
  --blush:   #C68A78;   /* soft rose accent */
  --noir:    #1B1714;   /* dark section bg */
  --noir-tx: #EBE0CF;   /* text on dark */
  --line:    rgba(27,23,20,0.14);
  --line-lt: rgba(235,224,207,0.18);

  /* type */
  --serif: "Fraunces", Georgia, serif;
  --sans:  "Space Grotesk", "Helvetica Neue", Arial, sans-serif;

  /* fluid scale */
  --step--1: clamp(0.78rem, 0.74rem + 0.2vw, 0.9rem);
  --step-0:  clamp(0.98rem, 0.94rem + 0.2vw, 1.08rem);
  --step-1:  clamp(1.2rem, 1.05rem + 0.7vw, 1.6rem);
  --step-2:  clamp(1.6rem, 1.2rem + 1.8vw, 2.6rem);
  --step-3:  clamp(2.4rem, 1.6rem + 3.6vw, 4.4rem);
  --step-4:  clamp(3.2rem, 1.6rem + 7vw, 7.5rem);
  --step-5:  clamp(4rem, 1rem + 13vw, 13rem);

  --pad:  clamp(20px, 5vw, 80px);
  --gap:  clamp(40px, 8vw, 140px);
  --nav-h: 88px;
  /* status-bar / notch safe area (0 on desktop); nav-total = bar + inset.
     Pure env() – the browser keeps this in sync with the URL bar. No JS offset
     and no pixel-guess fallback (both caused jank / a moving gap). */
  --safe-top: env(safe-area-inset-top, 0px);
  --nav-total: calc(var(--nav-h) + var(--safe-top));

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

body {
  font-family: var(--sans);
  font-size: var(--step-0);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-2);
  background: var(--paper);
  letter-spacing: 0.01em;
  position: relative;   /* containing block for the .bg-spots colour layer */
}

/* ── Background colour spots ────────────────────────────────── */
/* a few light, soft spots of colour to keep the parchment from feeling flat.
   Absolute + full document height so they SCROLL WITH the page (sit on the
   paper, not pinned to the glass). z-index:-1: in front of the parchment,
   behind all content – light sections reveal them, dark sections cover them.
   Soft brand hues (blush, gold, dusty rose, faint mauve) placed down the page,
   alternating sides. Keep alphas low – this should read as a hint, not a wash. */
.bg-spots {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle 57vw at 10% 3%,  rgba(200,150,120,0.26), transparent 72%),
    radial-gradient(circle 51vw at 90% 10%, rgba(205,148,138,0.22), transparent 72%),
    radial-gradient(circle 60vw at 5% 22%,  rgba(205,148,138,0.23), transparent 72%),
    radial-gradient(circle 51vw at 95% 33%, rgba(200,150,120,0.18), transparent 72%),
    radial-gradient(circle 57vw at 20% 44%, rgba(203,168,119,0.22), transparent 72%),
    radial-gradient(circle 54vw at 92% 53%, rgba(205,148,138,0.23), transparent 72%),
    radial-gradient(circle 60vw at 8% 64%,  rgba(203,168,119,0.21), transparent 72%),
    radial-gradient(circle 51vw at 88% 72%, rgba(205,148,138,0.22), transparent 72%),
    radial-gradient(circle 57vw at 25% 81%, rgba(200,150,120,0.21), transparent 72%),
    radial-gradient(circle 60vw at 90% 88%, rgba(203,168,119,0.22), transparent 72%),
    radial-gradient(circle 63vw at 45% 96%, rgba(205,148,138,0.23), transparent 72%),
    radial-gradient(circle 54vw at 50% 16%, rgba(200,150,120,0.20), transparent 72%),
    radial-gradient(circle 57vw at 58% 58%, rgba(203,168,119,0.21), transparent 72%);
}

/* Fraunces variable axes helper */
.serif { font-family: var(--serif); font-weight: 400; }


/* ── Nav scrim ─────────────────────────────────────────────── */
/* frosted, gradient-masked band so content blurs + fades softly under the
   fixed nav – no hard bar, no sharp cut line */
.nav-scrim {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: calc(132px + var(--safe-top));
  z-index: 999;
  pointer-events: none;
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  -webkit-mask-image: linear-gradient(to bottom, #000 46%, transparent);
  mask-image: linear-gradient(to bottom, #000 46%, transparent);
  transition: transform 0.5s var(--ease);
}
@media (max-width: 880px) { .nav-scrim { height: calc(104px + var(--safe-top)); } }
/* don't blur the open overlay menu */
.menu-open .nav-scrim { display: none; }

/* ── Preloader ─────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9800;
  background: var(--noir);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 38px);
  padding: var(--pad);
  color: var(--noir-tx);
}
.loader__logo { width: clamp(220px, 34vw, 400px); }
.loader__logo svg { width: 100%; height: auto; display: block; overflow: visible; }
.loader__logo-base { fill: rgba(235, 224, 207, 0.16); }
.loader__logo-fill { fill: var(--gold-lt); }
.loader__count {
  font-family: var(--serif);
  font-size: var(--step-2);
  font-variation-settings: "opsz" 120;
  letter-spacing: 0.1em;
  line-height: 1;
  opacity: 0.7;
}
.loader__count::after { content: "%"; }
.loaded .loader { pointer-events: none; }
/* no-JS / JS-failed fallback: never trap the page behind the loader */
html:not(.js) .loader { display: none; }

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-total);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* standard static safe-area pattern – no JS scroll offset. The browser
     animates this with the URL bar; we don't fight it (that caused the moving gap). */
  padding: var(--safe-top) var(--pad) 0;
  mix-blend-mode: difference;
  color: #fff;
  transition: transform 0.5s var(--ease);
}
/* JS adds .nav-hidden to <body> on mobile once the footer is reached
   (footer already has logo + nav) – nav AND its blur scrim slide up together */
body.nav-hidden .nav,
body.nav-hidden .nav-scrim { transform: translateY(-130%); }
.nav__logo { width: 54px; height: 54px; display: block; }
.nav__logo svg { width: 100%; height: 100%; fill: currentColor; overflow: visible; }
.nav__links { display: flex; gap: 34px; align-items: center; }
.nav__links a {
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__menu-btn { display: none; }
@media (max-width: 880px) {
  /* keep mix-blend-difference (inherited) so the logo + menu icon invert over
     light and dark sections automatically, same as desktop – including over the
     dark overlay menu, where they read light */
  .nav__links { display: none; }
  .nav__menu-btn {
    display: flex; flex-direction: column; gap: 6px;
    width: 34px; align-items: flex-end;
  }
  .nav__menu-btn span { display: block; height: 1.5px; background: currentColor; transition: 0.4s var(--ease); }
  .nav__menu-btn span:nth-child(1) { width: 34px; }
  .nav__menu-btn span:nth-child(2) { width: 24px; }
  .menu-open .nav__menu-btn span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .menu-open .nav__menu-btn span:nth-child(2) { width: 34px; transform: translateY(-0.5px) rotate(-45deg); }
}

/* ── Fullscreen overlay menu ───────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 990;
  background: var(--noir);
  color: var(--noir-tx);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--pad);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.9s var(--ease);
  pointer-events: none;
}
.menu-open .overlay { clip-path: inset(0 0 0% 0); pointer-events: auto; }
.overlay__links { display: flex; flex-direction: column; align-items: center; gap: clamp(4px, 1.5vw, 14px); }
.overlay__links a {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-4);
  line-height: 1;
  font-variation-settings: "SOFT" 30, "opsz" 144, "WONK" 0;
  width: max-content;
  transform-origin: center;
  transition: color 0.4s var(--ease), transform 0.5s var(--ease);
}
/* :active gives the lean on touch press; hover/focus only on non-touch */
.overlay__links a:active { color: var(--gold-lt); transform: skewX(-11deg); }
html:not(.touch) .overlay__links a:hover,
html:not(.touch) .overlay__links a:focus-visible { color: var(--gold-lt); transform: skewX(-11deg); }
.overlay__meta {
  margin-top: clamp(34px, 6vw, 70px);
  /* row-reverse: "Nazovi me" (DOM-first) sits on the right, Instagram on the left */
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; flex-direction: row-reverse;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 18px 34px;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.5s var(--ease), transform 0.18s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  border-radius: 100px;
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.5s var(--ease);
}
/* tap press feedback: snap to the filled state INSTANTLY (transition:none) so a
   quick tap shows the full effect, not a half-finished fill. :active is transient
   so it never sticks; on release it eases back via the base transition. */
.btn:active { transform: scale(0.97); }
.btn--solid:active { background: var(--gold); color: var(--ink); transition: none; }
.btn--outline:active { background: var(--ink); color: var(--paper); transition: none; }
.btn--ghost-light:active { background: var(--paper); color: var(--ink); transition: none; }
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid::before { background: var(--gold); transform-origin: bottom; }
.btn--outline { border: 1px solid var(--ink); color: var(--ink); }
.btn--outline::before { background: var(--ink); }
.btn--ghost-light { border: 1px solid var(--line-lt); color: var(--noir-tx); }
.btn--ghost-light::before { background: var(--paper); }
/* hover fill only on non-touch (html:not(.touch)) – media query alone is
   unreliable on browsers that misreport hover, leaving the fill stuck after a tap */
html:not(.touch) .btn--solid:hover { color: var(--ink); }
html:not(.touch) .btn--solid:hover::before { transform: scaleY(1); }
html:not(.touch) .btn--outline:hover { color: var(--paper); }
html:not(.touch) .btn--outline:hover::before { transform: scaleY(1); }
html:not(.touch) .btn--ghost-light:hover { color: var(--ink); }
html:not(.touch) .btn--ghost-light:hover::before { transform: scaleY(1); }

/* ── Section scaffolding ───────────────────────────────────── */
.section { padding: var(--gap) var(--pad); position: relative; }
.section--dark { background: var(--noir); color: var(--noir-tx); }
.eyebrow {
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; display: inline-block; }

/* line-mask reveal primitive */
.line-mask { overflow: hidden; display: block; }
.line-mask > * { display: block; will-change: transform; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--nav-total) var(--pad) 60px;
  overflow: hidden;
}
.hero__head {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 0.7rem + 6.95vw, 7.7rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  position: relative;
  z-index: 3;
  pointer-events: none;
}
.hero__head em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
  color: var(--gold);
}
/* desktop keeps the 3-line look: "koji" + "oduzima" share one line */
.hero__head .hw-1 { margin-left: clamp(18px, 4vw, 82px); }
.hero__head .hw-2, .hero__head .hw-3 { display: inline-block; vertical-align: top; }
.hero__head .hw-4 { margin-left: clamp(30px, 9vw, 150px); }
/* give the masks room for descenders (g, j) without changing line rhythm */
.hero__head .line-mask { padding-bottom: 0.18em; margin-bottom: -0.18em; }
.hero__sub {
  margin-top: clamp(20px, 2.6vw, 34px);
  max-width: 40ch;
  font-size: var(--step-1);
  font-weight: 300;
  color: var(--ink-2);
  position: relative; z-index: 3;
}
.hero__actions { margin-top: clamp(26px, 2.8vw, 38px); display: flex; gap: 16px; flex-wrap: wrap; position: relative; z-index: 3; }

/* floating hero images */
.hero__float {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border-radius: 8px;
  will-change: transform;
  box-shadow: 0 28px 60px -12px rgba(27,23,20,0.55);
}
.hero__float img { width: 100%; height: 100%; object-fit: cover; }
/* editorial cluster across the right half, framing the headline */
/* all kept in the right ~40% so none sit behind the headline/sub (they may
   overlap each other – collage – but never the text) */
.hero__float--1 { width: clamp(150px, 17vw, 280px);   aspect-ratio: 3/4; top: 9%;    right: 4%;  }
.hero__float--2 { width: clamp(119px, 13.75vw, 225px); aspect-ratio: 1/1; bottom: 9%;  right: 5%;  }
.hero__float--3 { width: clamp(110px, 13vw, 205px);   aspect-ratio: 4/5; bottom: 12%; right: 25%; }
.hero__float--4 { width: clamp(112px, 12.5vw, 206px); aspect-ratio: 1/1; top: 9%;     right: 24%; }
.hero__float--5 { width: clamp(88px, 10vw, 156px);    aspect-ratio: 1/1; top: 43%;    right: 14%; }
.hero__float--6 { width: clamp(204px, 23vw, 357px);  aspect-ratio: 3/2;  top: 30%;   right: 28%; }
.hero__float--7 { width: clamp(80px, 9vw, 142px);    aspect-ratio: 1/1; bottom: 22%; right: 33%; }
.hero__float--8, .hero__float--9 { display: none; } /* desktop: hidden; mobile overrides below */
@media (max-width: 880px) {
  /* mobile: headline (one word per row, staggered) sits left, two framed
     photos stacked on its right; description left-aligned */
  .hero { min-height: auto; justify-content: flex-start; padding-top: calc(var(--nav-total) + 22px); padding-bottom: 44px; align-items: flex-start; text-align: left; }
  .hero__float { box-shadow: 0 18px 36px -16px rgba(27, 23, 20, 0.45); }
  /* slightly larger so they overlap a touch in the middle; float-1 top and
     float-4 bottom (nav-total+16+57vw) stay put */
  /* --1 and --4 (studio shots) hidden on mobile; replaced by treatment results below */
  .hero__float--1, .hero__float--4 { display: none; }
  .hero__float--2, .hero__float--3, .hero__float--5,
  .hero__float--6, .hero__float--7 { display: none; }
  /* mobile treatment result images */
  .hero__float--8 { display: block; aspect-ratio: 3/4; top: calc(var(--nav-total) + 16px);        right: 4%;  width: 29vw; position: absolute; }
  .hero__float--9 { display: block; aspect-ratio: 1/1; top: calc(var(--nav-total) + 16px + 34vw); right: 11%; width: 23vw; position: absolute; }

  .hero__head { width: max-content; max-width: 58%; margin: 0; font-size: clamp(2.7rem, 13.5vw, 4.85rem); line-height: 1.02; text-align: left; }
  .hero__head .hw { display: block; margin-left: 0; }
  .hero__head .hw-1 { margin-left: 0.6em; }   /* Pogled between "oduzima" start and "koji" start */
  .hero__head .hw-2 { margin-left: 0.9em; }
  .hero__head .hw-3 { margin-left: 0.35em; }
  .hero__head .hw-4 { margin-left: 1.35em; }

  /* description flows freely (not boxed into a narrow column) */
  .hero__sub { text-align: left; max-width: none; }
  /* CTAs: centered, with the reservation button as the lower one */
  .hero__actions { align-self: center; flex-direction: column-reverse; align-items: center; gap: 14px; }
}
.hero__scroll {
  position: absolute;
  bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  color: var(--ink);
  z-index: 3;
}
/* hidden on mobile (placed after the base rule so it actually wins) */
@media (max-width: 880px) { .hero__scroll { display: none; } }
/* animated descending line (unchanged motion), now tipped with a chevron */
.hero__scroll::before {
  content: ""; width: 1px; height: 46px;
  background: var(--ink);
  animation: scrolldrop 2s var(--ease-io) infinite;
}
.hero__scroll::after {
  content: ""; width: 9px; height: 9px;
  border-right: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink);
  margin-top: -6px;
  /* fades in + drifts down in sync with the line draw */
  animation: scrolltip 2s var(--ease-io) infinite;
}
@keyframes scrolltip {
  0%   { opacity: 0; transform: translateY(-5px) rotate(45deg); }
  40%  { opacity: 1; transform: translateY(0) rotate(45deg); }
  60%  { opacity: 1; transform: translateY(0) rotate(45deg); }
  100% { opacity: 0; transform: translateY(6px) rotate(45deg); }
}
@keyframes scrolldrop { 0% { transform: scaleY(0); transform-origin: top; } 40% { transform: scaleY(1); transform-origin: top; } 60% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ── Marquee ───────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  padding: clamp(20px, 4vw, 48px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 0.4em;
  will-change: transform;
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-3);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--ink);
}
.marquee__track span { padding-right: 0.4em; }
.marquee__track em { font-style: italic; color: var(--gold); font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1; }

/* ── Manifesto (scroll word highlight) ─────────────────────── */
/* px width, not ch: ch resolves against this container's small body font,
   which collapsed the block under the huge serif inside it */
.manifesto { max-width: 820px; margin: 0 auto; text-align: left; }
.manifesto__text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 1.2rem + 2.7vw, 3.3rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 120, "SOFT" 20;
}
.manifesto__text .w { color: rgba(27,23,20,0.16); transition: color 0.3s linear; }
.manifesto__text .w.lit { color: var(--ink); }
.manifesto__text em { font-style: italic; }

/* ── Services list (image slides in from the name's position) ── */
.services { position: relative; }
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 3.4vw, 46px) 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.svc-list .svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-row__num { font-size: var(--step--1); color: var(--gold); letter-spacing: 0.1em; }
.svc-row__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 1rem + 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  white-space: nowrap;
  transform-origin: left center;
  /* pre-promote to its own layer so the first hover doesn't hitch while the
     browser sets up compositing for the skew */
  will-change: transform;
  /* pure transform (skew lean) – cheap + smooth, no variable-font interpolation jank */
  transition: color 0.5s var(--ease), transform 0.55s var(--ease);
}
.svc-row__meta { display: flex; align-items: center; gap: 20px; }
.svc-row__price { font-size: var(--step-1); font-family: var(--serif); color: var(--ink); transition: color 0.5s var(--ease); }
.svc-row__arrow { font-size: var(--step-1); transition: transform 0.5s var(--ease); display: inline-block; }
/* image that slides into the space the name vacates */
.svc-row__img {
  position: absolute;
  left: 104px;
  top: 50%;
  width: clamp(58px, 6.4vw, 108px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  pointer-events: none;
  transform: translate(-14px, -50%) scale(0.97);
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  box-shadow: 0 18px 38px -16px rgba(27, 23, 20, 0.45);
  transition: clip-path 0.65s var(--ease), opacity 0.5s var(--ease), transform 0.65s var(--ease);
  will-change: clip-path, transform;
}
/* active state: name leans right + image reveals from the left.
   desktop = real hover; touch = the scroll-centred row (.is-active, set in JS) */
html:not(.touch) .svc-row:hover .svc-row__name,
html:not(.touch) .svc-row:focus-visible .svc-row__name { color: var(--gold); transform: translateX(calc(clamp(58px, 6.4vw, 108px) + 32px)) skewX(-11deg); }
html:not(.touch) .svc-row:hover .svc-row__img,
html:not(.touch) .svc-row:focus-visible .svc-row__img { opacity: 1; clip-path: inset(0 0 0 0); transform: translate(0, -50%) scale(1); }
html:not(.touch) .svc-row:hover .svc-row__arrow,
html:not(.touch) .svc-row:focus-visible .svc-row__arrow { transform: translate(8px, -8px); }
.svc-row.is-active .svc-row__name {
  color: var(--gold);
  transform: translateX(calc(clamp(58px, 6.4vw, 108px) + 32px)) skewX(-11deg);
}
.svc-row.is-active .svc-row__img {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate(0, -50%) scale(1);
}
.svc-row.is-active .svc-row__arrow { transform: translate(8px, -8px); }
/* "Uskoro" pill + greyed coming-soon row */
.svc-row__soon {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 15px;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 18px;
}
.svc-row--soon .svc-row__name { color: rgba(27, 23, 20, 0.4); }
.svc-row--soon .svc-row__price { color: rgba(27, 23, 20, 0.4); }
@media (max-width: 880px) {
  .svc-row { grid-template-columns: 40px 1fr auto; gap: 14px; }
  .svc-row__arrow { display: none; }
  .svc-row__price { font-size: var(--step-0); }
  .svc-row__soon { font-size: 0.58rem; padding: 3px 9px; margin-left: 8px; display: inline-block; vertical-align: middle; }
  .svc-row__name { white-space: normal; }
  /* mobile: no image – the scroll-centred row just leans + turns gold */
  .svc-row__img { display: none; }
  .svc-row.is-active .svc-row__name { transform: skewX(-9deg); }
}

/* ── Floating parallax gallery ─────────────────────────────── */
.float-gallery {
  position: relative;
  min-height: 170vh;
  padding: var(--gap) var(--pad);
  padding-bottom: clamp(90px, 13vw, 220px);
  margin-bottom: clamp(40px, 6vw, 110px);
}
.float-gallery__lead {
  position: sticky;
  top: 30vh;
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-2);
  line-height: 1.1;
  max-width: 16ch;
  font-variation-settings: "opsz" 120, "SOFT" 20;
  z-index: 1;
  pointer-events: none;
}
.float-gallery__lead em { font-style: italic; color: var(--gold); }
.fg-item {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  will-change: transform;
  box-shadow: 0 28px 60px -12px rgba(27,23,20,0.55);
}
.fg-item img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); will-change: transform; }
/* all on the right – the sticky lead sits on the left and stays readable as
   the studio photos scroll past it */
.fg-1 { width: clamp(220px, 27vw, 420px); aspect-ratio: 3/4; top: 2%;  right: 6%;  }
.fg-2 { width: clamp(180px, 22vw, 340px); aspect-ratio: 4/5; top: 27%; right: 31%; }
.fg-3 { width: clamp(200px, 25vw, 400px); aspect-ratio: 1/1; top: 52%; right: 7%;  }
.fg-4 { width: clamp(160px, 19vw, 300px); aspect-ratio: 3/4; top: 75%; right: 27%; }
@media (max-width: 880px) {
  .float-gallery { min-height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .float-gallery__lead { position: static; grid-column: 1 / -1; margin-bottom: 20px; }
  .fg-item { position: static; width: 100% !important; }
}

/* ── About ─────────────────────────────────────────────────── */
/* media spans the left; head + body stack on the right, centred as a group
   (the 1fr spacer rows absorb the extra height of the tall image) */
.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr auto auto 1fr;
  grid-template-areas:
    "media ."
    "media head"
    "media body"
    "media .";
  column-gap: var(--gap);
}
.about__media { grid-area: media; position: relative; overflow: hidden; aspect-ratio: 4/5; border-radius: 8px; box-shadow: 0 28px 60px -12px rgba(27,23,20,0.55); }
.about__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.2); will-change: transform; }
.about__head { grid-area: head; }
.about__body { grid-area: body; }
.about__name { font-family: var(--serif); font-weight: 300; font-size: var(--step-3); line-height: 1; margin: 18px 0 24px; font-variation-settings: "opsz" 144, "SOFT" 30; }
.about__name em { font-style: italic; color: var(--gold); }
.about__text { font-size: var(--step-1); font-weight: 300; max-width: 46ch; margin-bottom: 18px; color: var(--ink-2); }
.about__sig { font-family: var(--serif); font-style: italic; font-size: var(--step-2); color: var(--gold); margin: 0; }
/* sig + button on one row (sig left, button right) on all widths */
.about__footer { margin-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
@media (max-width: 880px) {
  .about {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "head" "media" "body";
    row-gap: 22px;
  }
  .about__footer { margin-top: 22px; }
}

/* ── Stats strip ───────────────────────────────────────────── */
/* flex space-between gives even GAPS between numbers of unequal width
   (a 4-col grid only evens the column centres, leaving wide items crowded) */
.stats { display: flex; justify-content: space-between; align-items: flex-start; gap: clamp(24px, 4vw, 70px); flex-wrap: wrap; }
.stats > div { text-align: center; flex: 0 0 auto; }
.stat__num { font-family: var(--serif); font-weight: 300; font-size: var(--step-4); line-height: 1; font-variation-settings: "opsz" 144, "SOFT" 10; color: var(--ink); white-space: nowrap; }
.stat__lbl { font-size: var(--step--1); letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 10px; }
.section--dark .stat__num { color: var(--noir-tx); }
@media (max-width: 700px) { .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 24px; } .stats > div { flex: none; } }

/* ── Big CTA ───────────────────────────────────────────────── */
.bigcta { text-align: center; }
.bigcta__head {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-5);
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 20;
}
.bigcta__head em { font-style: italic; color: var(--gold); font-variation-settings: "opsz" 144, "SOFT" 70, "WONK" 1; }
.bigcta__sub { margin: clamp(38px, 4.5vw, 56px) auto clamp(38px, 4.5vw, 56px); max-width: 40ch; color: var(--noir-tx); opacity: 0.7; }
.bigcta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: var(--noir); color: var(--noir-tx); padding: var(--gap) var(--pad) 40px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid var(--line-lt); align-items: start; }
.footer__brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer__logo { width: clamp(160px, 17vw, 215px); height: auto; fill: var(--noir-tx); margin-bottom: 24px; display: block; }
.footer__tag { font-family: var(--serif); font-size: var(--step-1); max-width: 24ch; }
.footer__col h4 { font-size: var(--step--1); letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; margin-bottom: 10px; opacity: 0.85; transition: opacity 0.3s; font-size: var(--step-0); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: var(--step--1); letter-spacing: 0.06em; opacity: 0.6; flex-wrap: wrap; gap: 12px; }
/* hover colour only on non-touch – on touch :hover sticks after a tap */
html:not(.touch) .footer__col a:hover { opacity: 1; color: var(--gold-lt); }
html:not(.touch) .footer__bottom a:hover { color: var(--gold-lt); }
/* transient press feedback on tap (never sticks) */
.footer__col a:active { opacity: 1; color: var(--gold-lt); }
.footer__bottom a:active { color: var(--gold-lt); }
/* underline + arrow on Kontakt info column links only (not Navigacija) */
.footer__col:last-child a {
  text-decoration: underline;
  text-decoration-color: rgba(235, 224, 207, 0.2);
  text-underline-offset: 4px;
}
.footer__col:last-child a::after { content: " ↗"; }
@media (max-width: 760px) {
  /* brand on top (full width), then Navigacija + Kontakt side by side, centred */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; align-items: start; }
  .footer__brand { grid-column: 1 / -1; margin-bottom: 8px; }
  .footer__col { text-align: center; }
}

/* ── Reveal utility (JS adds .in) ──────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
html:not(.js) [data-reveal] { opacity: 1; transform: none; }
[data-reveal-d="1"] { transition-delay: 0.08s; }
[data-reveal-d="2"] { transition-delay: 0.16s; }
[data-reveal-d="3"] { transition-delay: 0.24s; }

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__float, .fg-item, .hero__head .line-mask > * { transform: none !important; }
}

/* ============================================================
   INNER PAGES – shared scaffolding (usluge, o-meni, cjenik …)
   ============================================================ */

/* active nav link (aria-current) – persistent underline / gold in overlay */
.nav__links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.overlay__links a[aria-current="page"] { color: var(--gold-lt); }

/* ── Page head (first section on inner pages; clears the fixed nav) ── */
.page-head {
  padding: calc(var(--nav-total) + clamp(34px, 7vw, 90px)) var(--pad) clamp(36px, 5vw, 70px);
  position: relative;
}
.page-head__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-4);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 10, "WONK" 0;
  margin: clamp(18px, 2.5vw, 30px) 0 0;
  max-width: 16ch;
}
.page-head__title em { font-style: italic; color: var(--gold); font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1; }
.page-head__sub {
  margin-top: clamp(20px, 2.6vw, 32px);
  max-width: 52ch;
  font-size: var(--step-1);
  font-weight: 300;
  color: var(--ink-2);
}

/* ── Service groups (alternating photo / detail) ───────────── */
.svc-groups {
  padding: clamp(60px, 10vw, 140px) var(--pad) var(--gap);
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 9vw, 150px);
}
.svc-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
}
/* reverse = photo on the right */
.svc-group--reverse .svc-group__media { grid-column: 2; grid-row: 1; }
.svc-group--reverse .svc-group__body  { grid-column: 1; grid-row: 1; }
.svc-group__media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 28px 60px -12px rgba(27,23,20,0.55);
}
.svc-group__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.svc-group__body { max-width: 52ch; }
.svc-group__label {
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.svc-group__num { color: var(--gold); }
.svc-group__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-3);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 12px 0 0;
  font-variation-settings: "opsz" 144, "SOFT" 10, "WONK" 0;
}
.svc-group__title em { font-style: italic; color: var(--gold); font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1; }
.svc-group__from {
  display: block;
  font-family: var(--serif);
  font-size: var(--step-2);
  line-height: 1;
  color: var(--gold);
  margin-top: 10px;
  font-variation-settings: "opsz" 72, "SOFT" 20;
}
.svc-group__text { margin-top: clamp(14px, 1.6vw, 20px); color: var(--ink-2); }
.svc-group__info { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(16px, 2vw, 22px); }
.svc-group__info span {
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  color: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 16px;
}
.svc-group__actions { margin-top: clamp(24px, 3vw, 36px); display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Price list (used on usluge + cjenik + service pages) ──── */
.price-cap {
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: clamp(20px, 2.4vw, 28px) 0 4px;
}
.price-list { margin-top: clamp(14px, 1.8vw, 22px); }
/* when no caption precedes it, restore the top margin */
.svc-group__text + .price-list { margin-top: clamp(20px, 2.4vw, 30px); }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.price-row__name { font-size: var(--step-0); color: var(--ink); }
.price-row__vals { display: flex; align-items: baseline; gap: 10px; white-space: nowrap; font-family: var(--serif); }
.price-row__val { font-size: var(--step-1); color: var(--ink); }
.price-row__val--muted { color: var(--ink-2); }
.price-row__sep { color: var(--line); font-size: var(--step-1); }
.price-note { margin-top: 14px; font-size: var(--step--1); color: var(--ink-2); }

/* ── Coming-soon card (Edukacije) ──────────────────────────── */
.soon-card {
  margin: 0 var(--pad);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
.soon-card__title { margin-top: 12px; }
/* keep "lash lift" together so the title wraps before it, not inside it */
.soon-card__title em { white-space: nowrap; }
.soon-card .svc-group__text { max-width: 60ch; }
.badge-soon {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 13px;
  border-radius: 100px;
  margin-left: 12px;
  vertical-align: middle;
  white-space: nowrap;
}

/* ── "Prije dolaska" notes ─────────────────────────────────── */
.notes__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-3);
  line-height: 1;
  margin: 16px 0 0;
  font-variation-settings: "opsz" 144, "SOFT" 10;
}
.notes__title em { font-style: italic; color: var(--gold); }
.notes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.5vw, 48px) clamp(30px, 5vw, 80px);
  margin-top: clamp(34px, 5vw, 64px);
}
.note { display: flex; gap: 18px; align-items: flex-start; }
.note__num { font-family: var(--serif); color: var(--gold); font-size: var(--step-2); line-height: 1; flex: 0 0 auto; font-variation-settings: "opsz" 72; min-width: 1.5em; }
.note__body { max-width: 42ch; }
.note__title { font-family: var(--sans); font-weight: 500; font-size: var(--step-0); letter-spacing: 0.02em; color: var(--ink); margin: 2px 0 6px; }
.note__text { color: var(--ink-2); }

/* ── Inner-page responsive ─────────────────────────────────── */
@media (max-width: 880px) {
  .svc-group { grid-template-columns: 1fr; gap: clamp(22px, 5vw, 38px); }
  /* photo always on top once stacked, regardless of reverse */
  .svc-group__media,
  .svc-group--reverse .svc-group__media { grid-column: 1; grid-row: 1; }
  .svc-group__body,
  .svc-group--reverse .svc-group__body { grid-column: 1; grid-row: 2; max-width: none; }
  .soon-card { grid-template-columns: 1fr; }
  .soon-card__action { text-align: center; }
  /* centred CTAs; Rezerviraj (DOM-first) sits on the right, Saznaj više on the left */
  .svc-group__actions { justify-content: center; flex-direction: row-reverse; }
  .notes-list { grid-template-columns: 1fr; gap: 22px; }
}

/* ============================================================
   CJENIK – compact one-glance price table
   Reuses .price-cap / .price-list / .price-row / .price-note + .bigcta.
   .cg = a price group; the heading links to the detail page, the head
   carries Saznaj više + Rezerviraj. Single-price services show the price
   inline in the heading (same row as the name). Left-aligned to .page-head.
   ============================================================ */
.cjenik {
  max-width: 1040px;
  padding: 0 var(--pad) var(--gap);
  display: flex;
  flex-direction: column;
}
/* each group is its own band: a top hairline + symmetric padding, so the
   content sits centred with no trailing dead space – matters for the
   single-price groups (02, 03), which are only one line tall */
.cg { border-top: 1px solid var(--line); padding: clamp(26px, 3.4vw, 42px) 0; }
.cg__head {
  display: flex;
  justify-content: space-between;
  align-items: center;       /* CTAs centre vertically with the service name */
  gap: 16px 28px;
  flex-wrap: wrap;
}
.cg__heading { display: flex; align-items: baseline; gap: 14px 18px; min-width: 0; flex-wrap: wrap; }
.cg__num {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--gold);
  font-size: var(--step-1);
  line-height: 1;
  font-variation-settings: "opsz" 72;
}
.cg__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-2);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 10, "WONK" 0;
}
/* the name links to its detail page; inline-flex so the → centres vertically
   with the name. Hover = homepage service-row method: gold + faux-italic lean */
.cg__title a {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  transform-origin: left center;
  will-change: transform;
  transition: color 0.5s var(--ease), transform 0.55s var(--ease);
}
/* desktop: the whole name is plain ink (no per-word italic gold) */
.cg__title em { font-style: normal; color: inherit; font-variation-settings: "opsz" 144, "SOFT" 10, "WONK" 0; }
.cg__title a::after {
  content: "\2192";
  font-family: var(--sans);
  font-size: 0.5em;
  color: var(--gold);
  margin-left: 0.55em;
}
html:not(.touch) .cg__title a:hover { color: var(--gold); transform: skewX(-10deg); }
.cg__price {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-2);
  line-height: 1;
  color: var(--gold);
  font-variation-settings: "opsz" 72, "SOFT" 20;
}
/* Saznaj više = plain text link (keeps the head light) + Rezerviraj = the one button */
.cg__actions { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 30px); flex: 0 0 auto; }
.cg__more {
  font-family: var(--sans);
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  position: relative;
  transition: color 0.4s var(--ease);
}
/* animated underline – same left-in / right-out wipe as the header nav links */
.cg__more::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease);
}
html:not(.touch) .cg__more:hover { color: var(--gold); }
html:not(.touch) .cg__more:hover::after { transform: scaleX(1); transform-origin: left; }
/* touch press feedback (no hover there) */
.cg__more:active { color: var(--gold); }
/* tighten the caption's default large top margin when it sits under a group head */
.cg .price-cap { margin-top: clamp(16px, 2vw, 22px); }

@media (max-width: 880px) {
  /* centre the service name + CTAs; single-price keeps the price in the same
     row as the name; the per-word italic gold returns (no hover on touch) */
  .cg__head { flex-direction: column; align-items: center; gap: 16px; }
  .cg__heading { justify-content: center; }
  .cg__title { text-align: center; }
  .cg__actions { justify-content: center; }
  .cg__title em { font-style: italic; color: var(--gold); font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1; }
  .cg .price-cap { text-align: center; }
}

/* ===== REZERVACIJA PAGE ===== */

/* Compact page entry – booking visible immediately below nav */
.rez-section {
  padding: calc(var(--nav-total) + clamp(28px, 4vw, 56px)) var(--pad) var(--gap);
}
.rez-section__inner {
  max-width: 580px;
  margin: 0 auto;
}
.rez-header { margin-bottom: clamp(24px, 3.5vw, 40px); }
.rez-header__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-3);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 10, "WONK" 0;
}
.rez-header__title em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
}
.rez-header__sub {
  margin-top: 10px;
  font-size: var(--step-0);
  color: var(--ink-2);
}

/* Legacy selectors kept for fallback – no longer used in HTML */
.rezervacija-section { padding: 0 var(--pad) var(--gap); }
.rezervacija-wrap { max-width: 920px; margin: 0 auto; }

/* ── QA / no-JS placeholder ─────────────────────────────── */
/* Hidden as soon as JS is detected (prevents flash on page load) */
.js .bk-qa-ph { display: none; }
.bk-qa-ph {
  min-height: 480px;
  background: var(--paper);
  border: 1px solid var(--gold);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: var(--gap);
  text-align: center;
}
.bk-qa-ph p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-1);
  font-style: italic;
  font-variation-settings: "opsz" 72, "SOFT" 20;
  color: var(--ink-2);
  max-width: 36ch;
}

/* ── Booking UI root ─────────────────────────────────────── */
.booking { /* width controlled by .rez-section__inner */ }

/* ── Loading / spinner ───────────────────────────────────── */
.bk-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  gap: 22px;
}
.bk-loading__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--step-1);
  font-variation-settings: "opsz" 72, "SOFT" 20;
  color: var(--ink-2);
}
.bk-spinner {
  width: 32px; height: 32px;
  border: 1.5px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: bk-spin 0.75s linear infinite;
  display: block;
  flex-shrink: 0;
}
@keyframes bk-spin { to { transform: rotate(360deg); } }

/* ── Step label (Odaberi uslugu / etc.) ──────────────────── */
.bk-step-label {
  font-size: var(--step--1);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.bk-step-label::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
  display: inline-block;
}

/* ── Service selector ────────────────────────────────────── */
.bk-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bk-svc {
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
  /* equal-height cards via grid stretch */
  min-height: 110px;
}
.bk-svc__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-1);
  color: var(--ink);
  font-variation-settings: "opsz" 72, "SOFT" 10;
  line-height: 1.2;
  flex: 1;  /* pushes .bk-svc__meta to bottom */
}
/* bottom row: duration left, price right */
.bk-svc__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
}
.bk-svc__dur {
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: 0.7;
}
.bk-svc__price {
  font-size: var(--step-0);
  font-family: var(--serif);
  font-variation-settings: "opsz" 72, "SOFT" 10;
  color: var(--gold);
}
html:not(.touch) .bk-svc:hover {
  border-color: var(--gold);
  background: rgba(178, 133, 76, 0.05);
}
.bk-svc:active,
.bk-svc--sel {
  border-color: var(--gold);
  background: rgba(178, 133, 76, 0.1);
}
/* subservice cards – slightly more compact */
.bk-services--sub .bk-svc { min-height: 90px; }
/* style cards – single column */
.bk-services--style { grid-template-columns: 1fr 1fr; }
.bk-services--style .bk-svc { min-height: auto; }
.bk-services--style .bk-svc__meta { flex-direction: row-reverse; }

@media (max-width: 480px) {
  .bk-services { grid-template-columns: 1fr; }
  .bk-services--style { grid-template-columns: 1fr; }
}

/* ── Back / change button ────────────────────────────────── */
.bk-back {
  display: flex;        /* block-level so step label goes on its own line */
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  color: var(--ink-2);
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
  margin-bottom: 28px;
  transition: color 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.bk-back--slim { margin-bottom: 20px; }
.bk-back__change {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 6px;
}
html:not(.touch) .bk-back:hover { color: var(--ink); }
.bk-back:active { color: var(--ink); }

/* ── Service chip (top of calendar – replaces the bk-back pattern) ── */
.bk-service-chip {
  text-align: center;
  margin-bottom: 28px;
}
.bk-service-chip__name {
  display: block;
  font-size: var(--step-0);
  color: var(--ink-2);
  margin-bottom: 10px;
}
/* Style sub-line in the calendar chip */
.bk-service-chip__style {
  display: block;
  font-size: var(--step--1);
  color: var(--ink-2);
  letter-spacing: 0.04em;
  margin-top: 3px;
  margin-bottom: 2px;
}
.bk-service-chip__change {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
html:not(.touch) .bk-service-chip__change:hover { border-color: var(--gold); color: var(--gold); }
.bk-service-chip__change:active { border-color: var(--ink); color: var(--ink); }

/* ── Month navigation ────────────────────────────────────── */
.bk-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.bk-month-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-2);
  font-variation-settings: "opsz" 72, "SOFT" 10;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.bk-month-btn {
  width: 38px; height: 38px;
  border-radius: 100%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;  /* foolproof centering for arrow glyphs */
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1;
  color: var(--ink-2);
  background: transparent;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.bk-month-btn:disabled { opacity: 0.25; cursor: default; pointer-events: none; }
html:not(.touch) .bk-month-btn:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.bk-month-btn:active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

/* ── Calendar grid ───────────────────────────────────────── */
.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-hd {
  text-align: center;
  font-family: var(--sans);
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 0 10px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-family: var(--sans);
  font-size: var(--step-0);
  font-weight: 300;
  position: relative;
  transition: background 0.18s, color 0.18s;
  -webkit-tap-highlight-color: transparent;
  border: none;
  background: transparent;
}
.cal-day--empty { pointer-events: none; }
.cal-day--off {
  color: var(--ink-2);
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
.cal-day--on {
  color: var(--ink);
  cursor: pointer;
}
html:not(.touch) .cal-day--on:hover {
  background: rgba(178, 133, 76, 0.14);
  color: var(--gold);
}
.cal-day--on:active {
  background: var(--gold);
  color: var(--paper);
}
.cal-day--sel {
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
}
/* today dot */
.cal-day--today::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.cal-day--sel.cal-day--today::after { background: var(--paper); }

/* calendar loading overlay */
.bk-cal-loading {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Time slots ──────────────────────────────────────────── */
.bk-slots {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.bk-slots__date {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-1);
  font-variation-settings: "opsz" 72, "SOFT" 20;
  color: var(--ink);
  margin-bottom: 18px;
}
.bk-slots__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.slot-btn {
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: var(--step-0);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  color: var(--ink);
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}
html:not(.touch) .slot-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.slot-btn:active,
.slot-btn--sel {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* Next step button */
.bk-next-wrap { margin-top: 30px; text-align: center; }

/* ── Variant tabs (Ekstenzije: PU / Nadopuna / Skidanje) ─── */
/* Styled identically to .slot-btn – same visual language as the time pickers */
.bk-var-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}
.bk-var-tab {
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: var(--step-0);
  letter-spacing: 0.04em;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
html:not(.touch) .bk-var-tab:hover { border-color: var(--gold); color: var(--gold); }
.bk-var-tab:active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
/* Active state – double class for specificity so it wins over :hover */
.bk-var-tab.bk-var-tab--active {
  background: var(--ink);
  color: var(--paper) !important;
  border-color: var(--ink);
}
.bk-style-area { margin-top: 4px; }
.bk-step-label--sm { font-size: var(--step--1); margin-bottom: 16px; }

/* ── Add-on selector ─────────────────────────────────────── */
.bk-addons {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.bk-addons__label {
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.addon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.addon-row:last-child { border-bottom: none; }
.addon-cb {
  width: 18px; height: 18px;
  accent-color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}
.addon-row__name {
  flex: 1;
  font-size: var(--step-0);
  color: var(--ink);
}
.addon-row__meta {
  font-size: var(--step--1);
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
/* Inline style picker inside the addons list */
.addon-row-wrap { border-bottom: 1px solid var(--line); }
.addon-row-wrap:last-child { border-bottom: none; }
.addon-row-wrap--blocked { opacity: 0.3; pointer-events: none; }
/* Remove the per-row border that was on addon-row itself since wrap handles it */
.addon-row-wrap .addon-row { border-bottom: none; }

.addon-style-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 14px 14px 46px; /* indent to align under the name */
}
.addon-style-pill {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
html:not(.touch) .addon-style-pill:hover { border-color: var(--gold); color: var(--gold); }
.addon-style-pill:active,
.addon-style-pill.addon-style-pill--sel {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
/* Confirmed style shown under the add-on name */
.addon-style-tag {
  font-size: var(--step--1);
  color: var(--ink-2);
  letter-spacing: 0.03em;
}

.bk-addons__total {
  margin-top: 20px;
  font-size: var(--step-0);
  color: var(--ink-2);
}
.bk-addons__total strong { color: var(--ink); }
.bk-summary--sm { font-size: var(--step--1); }

/* ── Edit selection view ─────────────────────────────────── */
.bk-edit-list {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.bk-edit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.bk-edit-row:last-child { border-bottom: none; }
.bk-edit-row--primary { background: rgba(178, 133, 76, 0.05); }
.bk-edit-row__dot {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.bk-edit-row__dot::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: block;
}
.bk-edit-remove {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 1rem; line-height: 1;
  color: var(--ink-2);
  cursor: pointer;
  background: transparent;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
html:not(.touch) .bk-edit-remove:hover { border-color: var(--ink); color: var(--ink); }
.bk-edit-row__name { flex: 1; font-size: var(--step-0); color: var(--ink); }
.bk-edit-row__meta { font-size: var(--step--1); color: var(--gold); white-space: nowrap; }
/* Variant sub-text inside primary row name (e.g. "– Prva ugradnja") */
.bk-edit-row__variant { font-size: var(--step--1); color: var(--ink-2); display: block; margin-top: 2px; }
.bk-edit-change {
  font-size: var(--step--1);
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line);
  cursor: pointer;
  background: none; border: none;
  padding: 0; white-space: nowrap;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
html:not(.touch) .bk-edit-change:hover { color: var(--ink); }
.bk-summary .bk-edit-change { margin-left: auto; }
.bk-edit-total {
  font-size: var(--step-0);
  color: var(--ink-2);
  margin-bottom: 20px;
  text-align: center;
}
.bk-edit-total strong { color: var(--ink); }
.bk-edit-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ── Booking summary table (replaces inline summary in form) ── */
.bk-st {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 32px;
}
.bk-st__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
}
.bk-st__row:last-child { border-bottom: none; }
.bk-st__label {
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.bk-st__val {
  font-size: var(--step-0);
  color: var(--ink);
}
/* Add-on rows have no label – value is indented with a "+" prefix */
.bk-st__val--addon { color: var(--ink-2); font-size: var(--step--1); padding-left: 4px; }
/* Confirmed screen uses same table but full-width */
.bk-st--confirmed { margin-bottom: 24px; width: 100%; align-self: stretch; }
@media (max-width: 480px) {
  .bk-st__row { grid-template-columns: 80px 1fr; }
}

/* ── Booking form ────────────────────────────────────────── */
.bk-form-wrap { padding-top: 4px; }
.bk-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
  margin-bottom: 32px;
  padding: 16px 18px;
  background: rgba(178, 133, 76, 0.06);
  border-radius: 4px;
  border-left: 2px solid var(--gold);
  font-size: var(--step-0);
  color: var(--ink);
  line-height: 1.5;
}
.bk-summary__svc {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 72, "SOFT" 30;
}
.bk-summary__sep { color: var(--gold); }
.bk-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.bk-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.bk-field label {
  font-family: var(--sans);
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.bk-optional {
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.55;
}
.bk-field input,
.bk-field textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--sans);
  font-size: var(--step-0);
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s var(--ease);
  resize: vertical;
  -webkit-appearance: none;
  border-radius: 0;
}
.bk-field input:focus,
.bk-field textarea:focus { border-bottom-color: var(--gold); }
.bk-field input::placeholder,
.bk-field textarea::placeholder { color: var(--ink-2); opacity: 0.4; }
.bk-form__actions { padding-top: 6px; display: flex; justify-content: center; }

/* ── Confirmation ────────────────────────────────────────── */
.bk-confirmed {
  text-align: center;
  padding: 44px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.bk-confirmed__icon {
  width: 56px; height: 56px;
  color: var(--gold);
}
.bk-confirmed__icon svg { width: 100%; height: 100%; display: block; }
.bk-confirmed__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-3);
  font-variation-settings: "opsz" 144, "SOFT" 10;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.bk-confirmed__title em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
}
.bk-confirmed__sub {
  color: var(--ink-2);
  font-size: var(--step-0);
  max-width: 38ch;
}
.bk-confirmed__details {
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
  text-align: left;
}
.bk-confirmed__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.bk-confirmed__label {
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.bk-confirmed__val { font-size: var(--step-0); color: var(--ink); }

/* ── Confirmation – Pravila kod dolaska ──────────────────── */
.bk-rules {
  width: 100%;
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 24px;
  text-align: left;
}
.bk-rules__head {
  font-size: var(--step--1);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bk-rules__head::before { content: ""; width: 24px; height: 1px; background: currentColor; display: inline-block; }
.bk-rules__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
@media (max-width: 480px) {
  .bk-rules__grid { grid-template-columns: 1fr; }
}

/* ── Error state ─────────────────────────────────────────── */
.bk-error {
  text-align: center;
  padding: 44px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.bk-error__msg {
  color: var(--ink-2);
  max-width: 40ch;
  line-height: 1.6;
}
.bk-error__alt {
  font-size: var(--step-0);
  color: var(--ink-2);
}
.bk-error__alt a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
html:not(.touch) .bk-error__alt a:hover { color: var(--gold); }

/* persistent contact fallback below the booking UI */
.rezervacija-fallback {
  margin-top: clamp(28px, 3.5vw, 48px);
  text-align: center;
  font-family: var(--sans);
  font-size: var(--step-0);
  color: var(--ink-2);
  line-height: 1.6;
}

.rezervacija-fallback a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease);
}

html:not(.touch) .rezervacija-fallback a:hover { color: var(--gold); }

.rezervacija-fallback__hours {
  display: block;
  margin-top: 0.4em;
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  color: var(--ink-2);
}

/* ============================================================
   O MENI PAGE
   ============================================================ */

/* ── Intro: portrait + bio ── */
.omeni-intro {
  padding: 0 var(--pad) var(--gap);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 6vw, 100px);
  align-items: start;
}
.omeni-portrait {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 40px 75px -30px rgba(27,23,20,0.45);
}
.omeni-portrait img { width: 100%; height: 100%; object-fit: cover; }
.omeni-bio { padding-top: clamp(16px, 3vw, 48px); }
.omeni-bio__name {
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(16px, 2vw, 26px);
}
.omeni-bio__name span { color: var(--ink-2); }
.omeni-bio__text { color: var(--ink-2); line-height: 1.75; }
.omeni-bio__text + .omeni-bio__text { margin-top: 1.3em; }

/* ── Timeline ── */
.omeni-timeline {
  background: var(--noir);
  color: var(--noir-tx);
  padding: var(--gap) var(--pad);
}
.omeni-timeline__head {
  text-align: center;
  margin-bottom: clamp(44px, 6vw, 90px);
}
.omeni-timeline__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-3);
  font-variation-settings: "opsz" 144, "SOFT" 10;
  color: var(--noir-tx);
  margin-top: clamp(10px, 1.2vw, 16px);
  line-height: 1;
}
.omeni-timeline__title em {
  font-style: italic;
  color: var(--gold-lt);
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
}
.tl-track {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.tl-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(235,224,207,0.10);
  transform: translateX(-50%);
  pointer-events: none;
}
.tl-line__fill {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform-origin: top center;
  transform: scaleY(0);
}
.tl-nodes {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 5vw, 56px);
}
/* Two-column grid: content col – dot col – empty col (default)
   or:             empty col – dot col – content col (--r variant) */
.tl-node {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.tl-node .tl-node__content {
  grid-column: 1; grid-row: 1;
  text-align: right;
  padding-right: clamp(16px, 3.5vw, 52px);
}
.tl-node .tl-node__dot { grid-column: 2; grid-row: 1; }
.tl-node--r .tl-node__content {
  grid-column: 3; grid-row: 1;
  text-align: left;
  padding-right: 0;
  padding-left: clamp(16px, 3.5vw, 52px);
}
.tl-node--r .tl-node__dot { grid-column: 2; grid-row: 1; }
.tl-node__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  position: relative; z-index: 1;
  box-shadow: 0 0 0 5px rgba(178,133,76,0.15);
  flex-shrink: 0;
}
.tl-node__dot--soon {
  background: transparent;
  border: 1px dashed rgba(178,133,76,0.5);
  box-shadow: none;
}
.tl-node__year {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-2);
  line-height: 1;
  font-variation-settings: "opsz" 72, "SOFT" 0;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.tl-node__label {
  font-size: var(--step-0);
  color: rgba(235,224,207,0.75);
  margin-top: 5px;
  line-height: 1.4;
}
.tl-node__label em { font-style: italic; color: var(--gold-lt); }
/* certificate image sits below timeline, right-aligned */
.tl-cert {
  max-width: 540px;
  margin: clamp(36px, 5vw, 60px) auto 0;
}
.tl-cert img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 28px 60px -12px rgba(27,23,20,0.55);
}
.tl-cert__cap {
  font-size: var(--step--1);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(235,224,207,0.35);
  margin-top: 12px;
  text-align: center;
}

/* ── Philosophy: text + side image ── */
.omeni-philosophy {
  padding: var(--gap) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.omeni-philosophy__pull {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-2);
  font-variation-settings: "opsz" 72, "SOFT" 20;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
  border-left: 2px solid var(--gold);
  padding-left: clamp(16px, 2vw, 28px);
  margin: clamp(14px, 1.8vw, 22px) 0 clamp(20px, 2.5vw, 32px);
}
.omeni-philosophy__pull em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 72, "SOFT" 60, "WONK" 1;
}
.omeni-philosophy__text { color: var(--ink-2); line-height: 1.75; }
.omeni-philosophy__text + .omeni-philosophy__text { margin-top: 1.3em; }
.omeni-philosophy__img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 75px -30px rgba(27,23,20,0.45);
}
.omeni-philosophy__img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Opening day gallery ── */
.omeni-gallery { padding: 0 var(--pad) var(--gap); }
.omeni-gallery__head { margin-bottom: clamp(28px, 4vw, 52px); }
.omeni-gallery__date {
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.omeni-gallery__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-2);
  font-variation-settings: "opsz" 72, "SOFT" 10;
  color: var(--ink);
  line-height: 1;
}
.omeni-gallery__title em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 72, "SOFT" 60, "WONK" 1;
}
/* asymmetric 12-col scatter grid */
.og-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(6px, 1.2vw, 16px);
  align-items: start;
}
.og-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 60px -12px rgba(27,23,20,0.55);
}
.og-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.og-item--1 { grid-column: 1 / 6;  aspect-ratio: 2/3; }
.og-item--2 { grid-column: 6 / 9;  aspect-ratio: 3/4; align-self: end; margin-bottom: clamp(6px,1.2vw,16px); }
.og-item--3 { grid-column: 9 / 13; aspect-ratio: 3/4; }
.og-item--4 { grid-column: 1 / 5;  aspect-ratio: 16/10; margin-top: clamp(6px,1.2vw,16px); }
.og-item--5 { grid-column: 5 / 9;  aspect-ratio: 1/1;   margin-top: clamp(6px,1.2vw,16px); }
.og-item--6 { grid-column: 9 / 13; aspect-ratio: 16/10; margin-top: clamp(6px,1.2vw,16px); }

/* ============================================================
   GALERIJA
   ============================================================ */

/* jump-link strip – centred pill row, wraps on mobile */
.gallery-jumps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: clamp(20px, 2.5vw, 36px) var(--pad);
}

/* service section band – top hairline + symmetric vertical padding */
.gallery-section {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 7vw, 100px) 0;
}

/* heading row: eyebrow + title left, "Saznaj više" link right, aligned to baseline of heading */
.gallery-section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 52px);
}

/* placeholder box – swapped for real photos once the professional shoot is delivered */
.og-item--ph {
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: none;
}

@media (max-width: 760px) {
  .gallery-section__head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .gallery-jumps { gap: 10px; }
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .omeni-intro { grid-template-columns: 1fr; gap: clamp(20px, 4vw, 36px); }
  .omeni-bio { padding-top: 0; }

  /* collapse timeline to single left-edge column */
  .tl-line { left: 6px; transform: none; }
  .tl-track { padding-left: 28px; }
  .tl-node,
  .tl-node--r { grid-template-columns: 1fr; position: relative; }
  .tl-node .tl-node__content,
  .tl-node--r .tl-node__content {
    grid-column: 1; grid-row: 1;
    text-align: left;
    padding-left: 0; padding-right: 0;
  }
  /* dot sits on the left-edge line (line at left:6px; track padding 28px → dot offset -28px) */
  .tl-node .tl-node__dot,
  .tl-node--r .tl-node__dot { display: block; position: absolute; left: -28px; top: 6px; grid-column: 1; grid-row: 2; }
  /* left-align the timeline section heading on mobile */
  .omeni-timeline__head { text-align: left; }
  .tl-cert { max-width: 100%; }

  .omeni-philosophy { grid-template-columns: 1fr; gap: clamp(24px, 5vw, 40px); }
  .omeni-philosophy__img { order: -1; aspect-ratio: 4/3; }

  .og-grid { grid-template-columns: 1fr 1fr; }
  .og-item--1 { grid-column: 1 / 2; aspect-ratio: 3/4; }
  .og-item--2 { grid-column: 2 / 3; aspect-ratio: 3/4; margin-bottom: 0; align-self: start; }
  .og-item--3 { grid-column: 1 / 2; aspect-ratio: 4/3; }
  .og-item--4 { grid-column: 2 / 3; aspect-ratio: 4/3; }
  .og-item--5 { grid-column: 1 / 2; aspect-ratio: 1/1; }
  .og-item--6 { grid-column: 2 / 3; aspect-ratio: 1/1; margin-top: 0; }
}

/* ============================================================
   BEFORE / AFTER SECTION LAYOUT  (.ba-section)
   2-column: title left (40%) | image+nav right (60%)
   ============================================================ */

.ba-section {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(36px, 6vw, 100px);
  padding: var(--gap) var(--pad);
  align-items: center;
}
.ba-section__lead { /* title column – vertically centred by align-items */ }
.ba-section__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-3);
  line-height: 1;
  margin: clamp(14px, 2vw, 22px) 0 0;
  font-variation-settings: "opsz" 144, "SOFT" 10;
  color: var(--ink);
}
.ba-section__title em {
  font-style: italic; color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
}
.ba-section__media { /* image + nav column */ }
.ba-section--reverse { grid-template-columns: 3fr 2fr; }
.ba-section--reverse .ba-section__media { order: 1; }
.ba-section--reverse .ba-section__lead  { order: 2; }

@media (max-width: 880px) {
  .ba-section {
    grid-template-columns: 1fr;
    gap: clamp(16px, 3vw, 28px);
  }
  .ba-section--reverse .ba-section__lead  { order: 1; }
  .ba-section--reverse .ba-section__media { order: 2; }
}

/* ── Outer wrap: clips the sliding track ── */
.ba-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 60px -12px rgba(27,23,20,0.55);
}

/* Carousel track – slides horizontally; overflow intentionally NOT hidden here
   (the wrapper clips). Overflow hidden here would clip slides 2+ in place. */
.ba-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* One comparison pair */
.ba-slider {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;        /* clips scaled/clipped images within the slide */
  aspect-ratio: 3/2;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.ba-slider__after,
.ba-slider__before {
  position: absolute;
  inset: 0;
}

.ba-slider__after  img,
.ba-slider__before img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  pointer-events: none; user-select: none; -webkit-user-select: none;
}

/* Before layer clips from the right */
.ba-slider__before { clip-path: inset(0 50% 0 0); }

/* Vertical handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  width: 2px;
}
.ba-handle__line {
  position: absolute;
  inset: 0;
  width: 1.5px;
  left: 50%; transform: translateX(-50%);
  background: rgba(241,232,218,0.85);
}
.ba-handle__btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(241,232,218,0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: grid; place-items: center;
  box-shadow: 0 2px 10px rgba(27,23,20,0.22);
  color: var(--ink);
}
.ba-handle__btn svg { display: block; }

/* Prije / Poslije pill labels with animated fill */
.ba-label {
  position: absolute;
  bottom: 12px;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  border-radius: 100px;
  border: 1.5px solid rgba(241,232,218,0.8);
  display: inline-flex;
  align-items: center;
}
.ba-label--b { left: 12px; }
.ba-label--a { right: 12px; }

/* Sliding fill (width controlled by JS via transform) */
.ba-label__fill {
  position: absolute;
  inset: 0;
  background: rgba(241,232,218,0.9);
  transform: scaleX(0.5);   /* start at 50% (handle at centre) */
  will-change: transform;
}
.ba-label--b .ba-label__fill { transform-origin: left;  }
.ba-label--a .ba-label__fill { transform-origin: right; }

/* Text on top; mix-blend-mode:difference flips it dark when fill covers it */
.ba-label__text {
  position: relative;
  z-index: 1;
  padding: 5px 13px;
  font-family: var(--sans);
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241,232,218,0.9);
  mix-blend-mode: difference;
  white-space: nowrap;
}

/* Navigation (prev / dots / next) – only shown when > 1 pair */
.ba-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
}
.ba-nav__btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: var(--ink); cursor: pointer;
  display: grid; place-items: center;
  padding: 0; -webkit-appearance: none; appearance: none;
  font-size: 0.85rem; line-height: 1; color: var(--paper);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 880px) {
  .ba-nav { gap: 28px; }
  .ba-nav__btn { width: 42px; height: 42px; font-size: 1rem; }
}
.ba-nav__btn:disabled { opacity: 0.2; cursor: default; pointer-events: none; }
html:not(.touch) .ba-nav__btn:hover { background: var(--gold); border-color: var(--gold); color: var(--paper); }
.ba-nav__btn:active { background: var(--gold); border-color: var(--gold); color: var(--paper); }
.ba-dots { display: flex; gap: 8px; align-items: center; }
.ba-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--line); cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.ba-dot.is-active { background: var(--gold); transform: scale(1.4); }

/* ============================================================
   SCATTERED GALLERY GRID  (.gs-grid)
   Replaces .og-grid in galerija.html – more floaty, offset items
   ============================================================ */

.gs-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(14px, 2.2vw, 36px);
  row-gap: 0;
  align-items: start;
}
.gs-grid .gs-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 44px -18px rgba(27,23,20,0.30);
}
.gs-grid .gs-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 4-item scatter (galerija sections) */
.gs-1 { grid-column: 1 / 5;  aspect-ratio: 2/3; }
.gs-2 { grid-column: 5 / 8;  aspect-ratio: 3/4; margin-top: clamp(64px, 11vw, 160px); }
.gs-3 { grid-column: 8 / 12; aspect-ratio: 3/4; margin-top: clamp(20px, 3.5vw, 52px); }
.gs-4 { grid-column: 2 / 8;  aspect-ratio: 16/9; margin-top: clamp(16px, 2.5vw, 36px); }

/* 6-item scatter (o-meni opening day gallery) */
.gs-grid--6 .gs-1 { grid-column: 1 / 6;  aspect-ratio: 2/3; }
.gs-grid--6 .gs-2 { grid-column: 6 / 9;  aspect-ratio: 3/4; margin-top: clamp(48px, 8vw, 120px); align-self: end; }
.gs-grid--6 .gs-3 { grid-column: 9 / 13; aspect-ratio: 3/4; margin-top: clamp(14px, 2vw, 30px); }
.gs-grid--6 .gs-4 { grid-column: 1 / 5;  aspect-ratio: 16/10; margin-top: clamp(14px, 2vw, 30px); }
.gs-grid--6 .gs-5 { grid-column: 5 / 9;  aspect-ratio: 1/1;   margin-top: clamp(44px, 7vw, 100px); }
.gs-grid--6 .gs-6 { grid-column: 9 / 13; aspect-ratio: 16/10; margin-top: clamp(14px, 2vw, 30px); }

@media (max-width: 760px) {
  .gs-grid, .gs-grid--6 { grid-template-columns: 1fr 1fr; column-gap: 10px; }
  .gs-1 { grid-column: 1 / 2; grid-row: 1; aspect-ratio: 3/4; margin-top: 0; }
  .gs-2 { grid-column: 2 / 3; grid-row: 1; aspect-ratio: 3/4; margin-top: 36px; }
  .gs-3 { grid-column: 1 / 2; grid-row: 2; aspect-ratio: 4/3; margin-top: 10px; }
  .gs-4 { grid-column: 2 / 3; grid-row: 2; aspect-ratio: 1/1; margin-top: -20px; }
  .gs-grid--6 .gs-1 { grid-column: 1 / 2; grid-row: 1; aspect-ratio: 3/4; margin-top: 0; }
  .gs-grid--6 .gs-2 { grid-column: 2 / 3; grid-row: 1; aspect-ratio: 3/4; margin-top: 32px; }
  .gs-grid--6 .gs-3 { grid-column: 1 / 2; grid-row: 2; aspect-ratio: 4/3; margin-top: 10px; }
  .gs-grid--6 .gs-4 { grid-column: 2 / 3; grid-row: 2; aspect-ratio: 4/3; margin-top: 10px; }
  .gs-grid--6 .gs-5 { grid-column: 1 / 2; grid-row: 3; aspect-ratio: 1/1; margin-top: 10px; }
  .gs-grid--6 .gs-6 { grid-column: 2 / 3; grid-row: 3; aspect-ratio: 1/1; margin-top: 10px; }
}

/* ============================================================
   GALLERY FLOAT SECTIONS (galerija.html)
   Sticky lead + scrolling absolute photo cluster, alternating
   ============================================================ */

.gallery-float-section {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(40px, 6vw, 100px);
  padding: var(--gap) var(--pad);
  border-top: 1px solid var(--line);
  position: relative;
}
.gallery-float-section--reverse {
  grid-template-columns: 3fr 2fr;
}
.gallery-float-section--reverse .gfs-lead   { order: 2; }
.gallery-float-section--reverse .gfs-photos { order: 1; }

.gfs-lead {
  position: sticky;
  top: calc(var(--nav-total) + clamp(24px, 4vw, 56px));
  align-self: start;
}
.gfs-lead__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-3);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: clamp(12px, 1.5vw, 18px) 0 0;
  font-variation-settings: "opsz" 144, "SOFT" 10, "WONK" 0;
}
.gfs-lead__title em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
}
.gfs-lead__links {
  display: flex;
  flex-direction: row;
  gap: clamp(18px, 3vw, 36px);
  flex-wrap: wrap;
  margin-top: clamp(28px, 4vw, 48px);
}
/* links are inline-sized in row flex – ::after underline spans text only, not full row */

.gfs-photos {
  position: relative;
  min-height: 185vh;
}

.gp-item {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  will-change: transform;
  box-shadow: 0 28px 60px -12px rgba(27,23,20,0.55);
}
.gp-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transform: scale(1.12);
  will-change: transform;
}

/* ── Per-section scatter layouts ─────────────────────────────
   Rule: images at similar top% live on OPPOSITE sides (L vs R)
   with ≥ 20% horizontal gap. Source ratio matches slot ratio.
   Pairs: 0-12% | 26-34% | 50-57% | 73-80%             ── */

/* Ekstenzije – diagonal zigzag: L3 R3 R20 L15 L4 R14 R4 L20 */
#galerija-ekstenzije .gp-1 { width:44%; aspect-ratio:3/4;  top:0%;  left:3%;   }
#galerija-ekstenzije .gp-2 { width:38%; aspect-ratio:3/2;  top:11%; right:3%;  }
#galerija-ekstenzije .gp-3 { width:40%; aspect-ratio:4/5;  top:27%; right:20%; }
#galerija-ekstenzije .gp-4 { width:34%; aspect-ratio:3/2;  top:34%; left:15%;  }
#galerija-ekstenzije .gp-5 { width:42%; aspect-ratio:3/4;  top:52%; left:4%;   }
#galerija-ekstenzije .gp-6 { width:36%; aspect-ratio:3/2;  top:56%; right:14%; }
#galerija-ekstenzije .gp-7 { width:36%; aspect-ratio:3/2;  top:74%; right:4%;  }
#galerija-ekstenzije .gp-8 { width:36%; aspect-ratio:3/2;  top:80%; left:20%;  }

/* Lash Lift – R3 L4 L18 R14 R3 L16 L3 R18 */
#galerija-lash-lift .gp-1 { width:44%; aspect-ratio:3/4;  top:0%;  right:3%;  }
#galerija-lash-lift .gp-2 { width:38%; aspect-ratio:4/5;  top:12%; left:4%;   }
#galerija-lash-lift .gp-3 { width:36%; aspect-ratio:3/2;  top:28%; left:18%;  }
#galerija-lash-lift .gp-4 { width:38%; aspect-ratio:3/2;  top:34%; right:14%; }
#galerija-lash-lift .gp-5 { width:36%; aspect-ratio:1/1;  top:52%; right:3%;  }
#galerija-lash-lift .gp-6 { width:40%; aspect-ratio:3/2;  top:55%; left:16%;  }
#galerija-lash-lift .gp-7 { width:34%; aspect-ratio:1/1;  top:74%; left:3%;   }
#galerija-lash-lift .gp-8 { width:38%; aspect-ratio:3/2;  top:79%; right:18%; }

/* Brow Lift – gp-1&2 offset 20% vertically; gp-8 replaced with landscape to fix goofy-face */
#galerija-brow-lift .gp-1 { width:42%; aspect-ratio:4/5;  top:0%;  left:3%;   }
#galerija-brow-lift .gp-2 { width:38%; aspect-ratio:3/2;  top:20%; right:3%;  }
#galerija-brow-lift .gp-3 { width:36%; aspect-ratio:3/2;  top:30%; left:4%;   }
#galerija-brow-lift .gp-4 { width:40%; aspect-ratio:3/4;  top:46%; right:4%;  }
#galerija-brow-lift .gp-5 { width:38%; aspect-ratio:3/2;  top:53%; left:3%;   }
#galerija-brow-lift .gp-6 { width:36%; aspect-ratio:3/2;  top:35%; right:14%; }
#galerija-brow-lift .gp-7 { width:36%; aspect-ratio:1/1;  top:75%; left:20%;  }
#galerija-brow-lift .gp-8 { width:38%; aspect-ratio:3/2;  top:79%; right:3%;  }

/* Obrve – L3 R16 R3 L20 L14 R3 R18 L4 */
#galerija-obrve .gp-1 { width:44%; aspect-ratio:3/2;  top:1%;  left:3%;   }
#galerija-obrve .gp-2 { width:36%; aspect-ratio:3/2;  top:12%; right:16%; }
#galerija-obrve .gp-3 { width:38%; aspect-ratio:3/2;  top:28%; right:3%;  }
#galerija-obrve .gp-4 { width:34%; aspect-ratio:1/1;  top:35%; left:20%;  }
#galerija-obrve .gp-5 { width:40%; aspect-ratio:3/2;  top:52%; right:4%;  }
#galerija-obrve .gp-6 { width:36%; aspect-ratio:3/2;  top:58%; left:4%;   }
#galerija-obrve .gp-7 { width:34%; aspect-ratio:1/1;  top:74%; right:18%; }
#galerija-obrve .gp-8 { width:38%; aspect-ratio:3/2;  top:78%; left:4%;   }
#galerija-obrve .gp-8 { width:38%; aspect-ratio:16/9; top:76%; left:4%;   }

@media (max-width: 880px) {
  .gallery-float-section,
  .gallery-float-section--reverse { grid-template-columns: 1fr; gap: clamp(24px, 4vw, 40px); }
  .gallery-float-section--reverse .gfs-lead   { order: 1; }
  .gallery-float-section--reverse .gfs-photos { order: 2; }
  .gfs-lead { position: static; }
  .gfs-photos { min-height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .gp-item   { position: static; width: 100% !important; aspect-ratio: 4/5 !important; }
}

/* ── O-meni opening day gallery – 6-image scatter ───────────
   Overrides global gp-1–8 positions; only gp-1–6 used here. */
#omeni-gallery { border-top: none; }
.page--galerija .gallery-float-section { border-top: none; }
#omeni-gallery .gfs-photos { min-height: 155vh; }

#omeni-gallery .gp-1 { width:46%; aspect-ratio:3/4; top:0%;  left:3%;   }
#omeni-gallery .gp-2 { width:40%; aspect-ratio:3/2; top:10%; right:3%;  }
#omeni-gallery .gp-3 { width:38%; aspect-ratio:3/2; top:30%; left:20%;  }
#omeni-gallery .gp-4 { width:42%; aspect-ratio:4/5; top:37%; right:6%;  }
#omeni-gallery .gp-5 { width:40%; aspect-ratio:3/2; top:62%; left:3%;   }
#omeni-gallery .gp-6 { width:36%; aspect-ratio:4/5; top:66%; right:3%;  }

@media (max-width: 880px) {
  #omeni-gallery .gfs-photos { min-height: auto; }
  #omeni-gallery .gp-item    { position: static; width: 100% !important; aspect-ratio: 4/5 !important; }
}

/* ── Pravila privatnosti – prose layout ────────────────────── */
.priv-content { max-width: 68ch; }
.priv-content h2[id] { scroll-margin-top: 25vh; }
.priv-content h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-1);
  font-variation-settings: "opsz" 72, "SOFT" 10;
  color: var(--ink);
  margin: clamp(36px, 5vw, 56px) 0 10px;
}
.priv-content h2:first-child { margin-top: 0; }
.priv-content p, .priv-content ul {
  font-size: var(--step-0);
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 10px;
}
.priv-content ul { padding-left: 22px; list-style: disc; }
.priv-content li { margin-bottom: 6px; }
.priv-content strong { color: var(--ink); font-weight: 500; }
.priv-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.priv-meta { font-size: var(--step--1); color: var(--ink-2); opacity: 0.6; margin-bottom: clamp(32px, 4vw, 48px); }

/* ── Kontakt page ────────────────────────────────────────────── */
.kontakt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  column-gap: clamp(48px, 6vw, 100px);
  row-gap: clamp(28px, 4vw, 52px);
  align-items: start;
  padding: calc(var(--nav-total) + clamp(34px, 7vw, 90px)) var(--pad) clamp(60px, 10vw, 120px);
}

.kontakt-left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 52px);
}

.kontakt-form-wrap {
  grid-column: 1;
  grid-row: 2;
}

.kontakt-head__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-4);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 10, "WONK" 0;
  margin: clamp(14px, 2vw, 22px) 0 0;
  max-width: 14ch;
}
.kontakt-head__title em { font-style: italic; color: var(--gold); font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1; }

.kontakt-info { display: flex; flex-direction: column; gap: 22px; }

.kontakt-detail-list { display: flex; flex-direction: column; gap: 18px; }

.kontakt-detail dt {
  font-family: var(--sans);
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.kontakt-detail dd {
  margin: 0;
  font-size: var(--step-0);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.55;
}

.kontakt-ctas { display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: baseline; }

/* inline text links with arrow – contact page + footer */
.kontakt-link {
  font-family: var(--sans);
  font-size: var(--step-0);
  font-weight: 300;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(27, 23, 20, 0.22);
  text-underline-offset: 4px;
  white-space: nowrap;
  transition: color 0.25s var(--ease), text-decoration-color 0.25s var(--ease);
}
.kontakt-link::after { content: " ↗"; }
html:not(.touch) .kontakt-link:hover { color: var(--gold); text-decoration-color: var(--gold); }

.kontakt-review-btn { align-self: flex-start; }

.kontakt-form-wrap { display: flex; flex-direction: column; }

.kontakt-form-head {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--step-2);
  line-height: 1.1;
  font-variation-settings: "opsz" 72, "SOFT" 10;
  color: var(--ink);
  margin: 0 0 clamp(20px, 3vw, 36px);
}
.kontakt-form-head em { font-style: italic; color: var(--gold); }

#cf-submit { border: none; cursor: pointer; line-height: 1; }

.kontakt-msg {
  margin-top: 16px;
  font-size: var(--step-0);
  line-height: 1.5;
  text-align: center;
}
.kontakt-msg--ok  { color: var(--gold); }
.kontakt-msg--err { color: #9b2d2d; }
.kontakt-msg--err .kontakt-link { color: inherit; text-decoration-color: rgba(155,45,45,0.35); }

.kontakt-map {
  grid-column: 2;
  grid-row: 1 / -1;
  position: sticky;
  top: calc(var(--nav-total) + 24px);
  mix-blend-mode: multiply;
}
#kontakt-map {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 8px;
  display: block;
  overflow: hidden;
}

@media (max-width: 880px) {
  .kontakt-split {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    column-gap: 0;
    row-gap: clamp(36px, 6vw, 56px);
  }
  .kontakt-left      { grid-column: 1; grid-row: 1; }
  .kontakt-map       { grid-column: 1; grid-row: 2; position: static; }
  .kontakt-form-wrap { grid-column: 1; grid-row: 3; }
  #kontakt-map { aspect-ratio: 16/9; }
  .kontakt-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .kontakt-review-btn { align-self: center; margin-top: 4px; }
}

/* ── Cookie consent banner ───────────────────────────────────── */
#mb-cb {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--noir);
  padding: clamp(14px, 2vw, 22px) var(--pad);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
  border-top: 1px solid var(--line-lt);
}
#mb-cb.mb-cb--in { transform: translateY(0); }

.mb-cb__text {
  flex: 1 1 240px;
  font-family: var(--sans);
  font-size: var(--step--1);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(235,224,207,0.8);
  margin: 0;
}
.mb-cb__text a { color: var(--gold-lt, #CBA877); text-decoration: underline; text-underline-offset: 3px; }

.mb-cb__actions { display: flex; gap: 10px; flex-shrink: 0; }

.mb-cb__deny, .mb-cb__accept {
  font-family: var(--sans);
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  -webkit-appearance: none; appearance: none;
  transition: background 0.22s, color 0.22s, opacity 0.22s;
}
.mb-cb__deny {
  background: transparent;
  border: 1px solid rgba(235,224,207,0.22);
  color: rgba(235,224,207,0.65);
}
.mb-cb__accept {
  background: var(--paper);
  color: var(--noir);
}
html:not(.touch) .mb-cb__deny:hover   { border-color: rgba(235,224,207,0.55); color: rgba(235,224,207,0.9); }
html:not(.touch) .mb-cb__accept:hover { background: var(--gold-lt, #CBA877); }
