/* ============================================================
   NextJen WallPrint — editorial art-gallery aesthetic
   ============================================================ */

:root {
  /* palette — warm pastel, less pink, more universal */
  --cream:      #FFF7F0;   /* warm ivory */
  --cream-2:    #F7EBDB;   /* warm sand */
  --blush:      #F1D8C5;   /* peach blush */
  --rose:       #E4BDA8;   /* dusty terracotta-rose */
  --pink:       #D7A289;   /* warm clay */
  --pink-hot:   #A66A78;   /* muted mauve-rose accent */
  --burgundy:   #5C3B47;   /* muted mauve — body text */
  --plum:       #7B5A66;   /* lighter mauve */
  --ink:        #3E2530;   /* deepest mauve, still soft */
  --gold:       #B89466;   /* warm champagne */
  --clay:       #A35F45;   /* deep terracotta — special accent */

  --max: 1440px;
  --gutter: clamp(20px, 4vw, 56px);

  /* type */
  --ff-display: "Fraunces", "Times New Roman", serif;
  --ff-italic:  "Instrument Serif", "Georgia", serif;
  --ff-body:    "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  /* motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ----------------------------- reset */
*,*::before,*::after { box-sizing: border-box; }
html,body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--burgundy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
em { font-style: italic; }
@media (max-width: 480px) {
  body { font-size: 16px; }
}

::selection { background: var(--pink-hot); color: var(--cream); }

/* ----------------------------- global noise/grain */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: .045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ----------------------------- typography helpers */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--ff-body);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 500; color: var(--plum);
}
.eyebrow--muted { color: color-mix(in oklab, var(--plum) 55%, transparent); }
.eyebrow--light { color: color-mix(in oklab, var(--ink) 65%, transparent); }

.h-display {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(36px, 5.6vw, 80px);
  line-height: .98;
  letter-spacing: -.02em;
  color: var(--burgundy);
  margin: 0;
  font-variation-settings: "SOFT" 60, "opsz" 96;
}
.h-display em {
  font-family: var(--ff-italic);
  font-weight: 400;
  font-style: italic;
  color: var(--pink-hot);
  letter-spacing: -.01em;
}
.h-display--center { text-align: center; max-width: 18ch; margin-inline: auto; }
.h-display--light  { color: var(--ink); }
.h-display--light em { color: var(--pink-hot); }

.lede { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: color-mix(in oklab, var(--burgundy) 82%, transparent); }

/* ----------------------------- reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal .9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
.reveal--italic {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--pink-hot);
}
@keyframes reveal {
  to { opacity: 1; transform: none; }
}

/* ============================================================
   NAV
============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: color-mix(in oklab, var(--cream) 72%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--burgundy) 10%, transparent);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: flex; align-items: baseline; gap: 10px; min-height: 44px; }
.nav__brand-mark {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -.015em;
  color: var(--burgundy);
}
.nav__brand-mark em {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--pink-hot);
  font-weight: 400;
  font-size: 1.05em;
}
.nav__brand-sub {
  font-size: 12.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--burgundy) 55%, transparent);
}
.nav__links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px;
}
.nav__links a {
  position: relative;
  padding: 6px 2px;
  color: var(--burgundy);
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform-origin: left; transform: scaleX(0);
  transition: transform .45s var(--ease);
}
@media (hover: hover) {
  .nav__links a:hover { color: var(--pink-hot); }
  .nav__links a:hover::after { transform: scaleX(1); }
}
.nav__cta {
  padding: 10px 18px !important;
  border-radius: 999px;
  background: var(--burgundy);
  color: var(--cream) !important;
}
@media (hover: hover) {
  .nav__cta:hover { background: var(--pink-hot); }
}
.nav__cta::after { display: none; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  margin-right: -10px;
}
.nav__toggle span {
  width: 22px; height: 1.5px; background: var(--burgundy); display: block;
  transition: transform .35s var(--ease), opacity .25s;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(20px, 2.6vw, 36px) var(--gutter) clamp(40px, 5vw, 70px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: auto auto auto 1fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: start;
  isolation: isolate;
}
.hero__ambient { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  animation: drift 18s ease-in-out infinite alternate;
  will-change: transform;
}
.hero__blob--a {
  width: 520px; height: 520px;
  left: -120px; top: -120px;
  background: radial-gradient(circle, var(--blush), transparent 70%);
}
.hero__blob--b {
  width: 620px; height: 620px;
  right: -180px; bottom: -180px;
  background: radial-gradient(circle, var(--rose), transparent 70%);
  animation-duration: 22s;
}
@media (max-width: 720px) {
  .hero__blob { filter: blur(48px); opacity: .42; }
  .hero__blob--a { width: 320px; height: 320px; left: -80px; top: -60px; }
  .hero__blob--b { width: 380px; height: 380px; right: -100px; bottom: -120px; }
}
@keyframes drift {
  to { transform: translate3d(40px, 20px, 0) scale(1.05); }
}

.hero__meta {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid color-mix(in oklab, var(--burgundy) 15%, transparent);
}

.hero__title {
  grid-column: 1 / 2;
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 280;
  font-size: clamp(56px, 10vw, 172px);
  line-height: .88;
  letter-spacing: -.035em;
  color: var(--burgundy);
  font-variation-settings: "SOFT" 80, "opsz" 144;
}
.hero__title span { display: block; }
.hero__title .reveal--italic {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--pink-hot);
  font-weight: 400;
  padding-left: clamp(32px, 6vw, 90px);
  line-height: .9;
}
.hero__lede {
  grid-column: 1 / 2;
  max-width: 44ch;
  font-size: clamp(16px, 1.2vw, 19px);
  color: color-mix(in oklab, var(--burgundy) 80%, transparent);
}

.hero__bottom {
  grid-column: 1 / 2;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.hero__stats {
  display: flex; gap: 28px;
  padding-left: 28px;
  border-left: 1px solid color-mix(in oklab, var(--burgundy) 18%, transparent);
}
.hero__stats > div { display: flex; flex-direction: column; }
.hero__stats b {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--burgundy);
  line-height: 1;
}
.hero__stats span {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: color-mix(in oklab, var(--burgundy) 60%, transparent);
  margin-top: 4px;
}

/* hero image frame */
.hero__frame {
  grid-column: 2 / 3;
  grid-row: 2 / 5;
  position: relative;
  align-self: stretch;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -30px rgba(43,18,24,.35),
    0 0 0 1px rgba(43,18,24,.06);
  transform: rotate(.4deg);
}
.hero__frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.9) contrast(1.02);
  transition: transform 1.4s var(--ease);
}
@media (hover: hover) {
  .hero__frame:hover img { transform: scale(1.04); }
}
/* CTA button */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  letter-spacing: .02em;
  transition: transform .4s var(--ease), background .3s, color .3s;
  min-height: 48px;
  touch-action: manipulation;
}
.btn--dark { background: var(--burgundy); color: var(--cream); }
@media (hover: hover) {
  .btn--dark:hover { background: var(--pink-hot); transform: translateY(-2px); }
  .btn--dark:hover svg { transform: translateX(4px); }
}
.btn--dark:active { transform: translateY(0); }
.btn--dark svg { transition: transform .4s var(--ease); }

/* ============================================================
   MARQUEE — slogan ticker
============================================================ */
.marquee {
  overflow: hidden;
  padding: 22px 0;
  border-block: 1px solid color-mix(in oklab, var(--burgundy) 12%, transparent);
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
}
.marquee__track {
  display: flex; gap: 40px; white-space: nowrap;
  width: max-content;
  animation: slide 45s linear infinite;
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: clamp(28px, 3.2vw, 46px);
  color: var(--plum);
}
.marquee__track i {
  color: var(--gold);
  font-style: normal;
  font-family: var(--ff-display);
  font-size: .65em;
  align-self: center;
}
@keyframes slide { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ============================================================
   UVOD
============================================================ */
.uvod {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.uvod__grid {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.uvod__side { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.uvod__mark { width: clamp(120px, 14vw, 180px); color: var(--plum); animation: rotate 40s linear infinite; }
.uvod__mark svg { width: 100%; height: auto; display: block; }
@keyframes rotate { to { transform: rotate(360deg); } }

.uvod__body { display: flex; flex-direction: column; gap: clamp(32px, 4vw, 56px); }
.uvod__cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 44px);
}
.uvod__cols p { margin: 0; }

.pullquote {
  margin: 0;
  padding: clamp(28px, 3vw, 44px) 0;
  border-top: 1px solid color-mix(in oklab, var(--burgundy) 15%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--burgundy) 15%, transparent);
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.15;
  color: var(--burgundy);
  position: relative;
}
.pullquote em { color: var(--pink-hot); }
.pullquote__q {
  font-family: var(--ff-display);
  font-style: normal;
  color: var(--pink-hot);
  font-size: 1.4em;
  line-height: 0;
  display: inline-block;
  transform: translateY(.25em);
  margin-right: .05em;
  opacity: .55;
}

/* ============================================================
   SECTION HEAD (shared)
============================================================ */
.section-head {
  max-width: var(--max);
  margin: 0 auto clamp(40px, 5vw, 70px);
  padding: 0 var(--gutter);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  text-align: center;
}
.section-head .eyebrow { color: var(--plum); }
.section-sub {
  max-width: 56ch;
  color: color-mix(in oklab, var(--burgundy) 75%, transparent);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  margin: 0;
}
.section-head--split {
  flex-direction: row; flex-wrap: wrap; text-align: left;
  align-items: flex-end; justify-content: space-between; gap: 32px;
}
.section-head--split > div { flex: 1 1 440px; }
.section-sub--right { flex: 1 1 360px; max-width: 44ch; }

/* ============================================================
   KONCEPT / STEPS
============================================================ */
.koncept {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
  position: relative;
}
.koncept::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0; height: 1px;
  background: color-mix(in oklab, var(--burgundy) 12%, transparent);
}

.steps {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: step;
}
.step {
  position: relative;
  padding: clamp(24px, 2.6vw, 40px) clamp(16px, 1.6vw, 24px);
  border-left: 1px solid color-mix(in oklab, var(--burgundy) 14%, transparent);
  display: flex; flex-direction: column; gap: 12px;
  transition: background .35s var(--ease);
}
.step:last-child { border-right: 1px solid color-mix(in oklab, var(--burgundy) 14%, transparent); }
@media (hover: hover) {
  .step:hover { background: color-mix(in oklab, var(--blush) 55%, transparent); }
}
.step__num {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 3.4vw, 44px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
}
.step h3 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: -.01em;
  color: var(--burgundy);
}
.step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: color-mix(in oklab, var(--burgundy) 72%, transparent);
}

/* ============================================================
   PRIMJERI (cards)
============================================================ */
.primjeri {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  row-gap: clamp(48px, 6vw, 80px);
}
.card { position: relative; display: flex; flex-direction: column; gap: 20px; }
.card figure {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -30px rgba(43,18,24,.3);
}
.card figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter .6s;
  filter: saturate(.95);
}
@media (hover: hover) {
  .card:hover figure img { transform: scale(1.06); filter: saturate(1.05); }
}

.card__body { display: flex; flex-direction: column; gap: 10px; padding: 0 4px; }
.card__num {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .12em;
  color: var(--pink-hot);
}
.card h3 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(22px, 1.9vw, 30px);
  letter-spacing: -.015em;
  color: var(--burgundy);
}
.card h3 span {
  display: block;
  font-family: var(--ff-italic);
  font-style: italic;
  color: color-mix(in oklab, var(--burgundy) 60%, transparent);
  font-size: .75em;
  letter-spacing: 0;
}
.card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--burgundy) 75%, transparent);
  max-width: 34ch;
}
.card__tag {
  margin-top: 6px;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--plum);
}

/* asymmetric grid */
.card--01 { grid-column: 1 / span 5; }
.card--02 { grid-column: 7 / span 6; margin-top: clamp(40px, 8vw, 120px); }
.card--03 { grid-column: 1 / span 6; }
.card--04 { grid-column: 8 / span 5; margin-top: clamp(40px, 8vw, 120px); }

/* ============================================================
   PROCES
============================================================ */
.proces {
  background: var(--cream-2);
  border-block: 1px solid color-mix(in oklab, var(--burgundy) 10%, transparent);
  padding: clamp(80px, 10vw, 140px) 0;
}
.proces__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.proces__text { display: flex; flex-direction: column; gap: 24px; }
.proces__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  border-top: 1px solid color-mix(in oklab, var(--burgundy) 15%, transparent);
}
.proces__list li {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid color-mix(in oklab, var(--burgundy) 15%, transparent);
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--burgundy);
  transition: padding .4s var(--ease), color .3s;
}
.proces__list li b {
  font-family: var(--ff-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--pink-hot);
  font-size: .9em;
  min-width: 2ch;
}
@media (hover: hover) {
  .proces__list li:hover { padding-left: 10px; color: var(--pink-hot); }
}

.proces__media { position: relative; }
.proces__image {
  position: relative; margin: 0; aspect-ratio: 4/5;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(43,18,24,.45);
}
.proces__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease), filter .5s;
  filter: brightness(.85) saturate(.95);
}
.proces__image:hover img { transform: scale(1.04); filter: brightness(.92) saturate(1.02); }
.proces__caption {
  position: absolute; left: 20px; bottom: 20px;
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: 16px;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

/* ============================================================
   KONTAKT
============================================================ */
.kontakt {
  background: linear-gradient(170deg, var(--blush) 0%, var(--rose) 55%, var(--pink) 100%);
  color: var(--ink);
  padding: clamp(80px, 10vw, 160px) var(--gutter) clamp(60px, 7vw, 100px);
  position: relative;
  overflow: hidden;
}
.kontakt::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px at 10% 20%, color-mix(in oklab, var(--cream) 50%, transparent), transparent 60%),
    radial-gradient(800px at 90% 80%, color-mix(in oklab, var(--pink-hot) 18%, transparent), transparent 60%);
  pointer-events: none;
}
.kontakt__slogan {
  position: relative;
  text-align: center;
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: clamp(48px, 9vw, 130px);
  line-height: 1;
  color: color-mix(in oklab, var(--ink) 28%, transparent);
  margin-bottom: clamp(60px, 7vw, 90px);
  letter-spacing: -.02em;
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.kontakt__slogan em {
  font-family: var(--ff-display);
  font-style: normal;
  color: var(--pink-hot);
  font-size: .5em;
  align-self: center;
}

.kontakt__grid {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.kontakt__lead { display: flex; flex-direction: column; gap: 20px; }
.kontakt__sub {
  color: color-mix(in oklab, var(--ink) 75%, transparent);
  font-size: 16px;
  line-height: 1.6;
  max-width: 42ch;
  margin: 0;
}

.kontakt__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 20px;
}
.kontakt__list li { display: flex; flex-direction: column; gap: 6px; }
.kontakt__label {
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--ink) 60%, transparent);
}
.kontakt__list a, .kontakt__list span:last-child {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 22px);
  color: var(--ink);
  transition: color .3s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  align-self: flex-start;
}
@media (hover: hover) {
  .kontakt__list a:hover { color: var(--pink-hot); border-bottom-color: var(--pink-hot); }
}

.kontakt__social { display: flex; flex-direction: column; gap: 14px; }
.socials { display: flex; flex-direction: column; gap: 10px; }
.social {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  border: 1px solid color-mix(in oklab, var(--ink) 22%, transparent);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink);
  background: color-mix(in oklab, var(--cream) 55%, transparent);
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease);
  align-self: flex-start;
  min-height: 44px;
}
@media (hover: hover) {
  .social:hover {
    background: var(--pink-hot);
    border-color: var(--pink-hot);
    color: var(--cream);
    transform: translateX(4px);
  }
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--cream-2);
  color: color-mix(in oklab, var(--ink) 75%, transparent);
  padding: 28px var(--gutter);
  font-size: 13px;
  border-top: 1px solid color-mix(in oklab, var(--ink) 12%, transparent);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.footer__mark { font-family: var(--ff-display); font-size: 18px; color: var(--ink); }
.footer__mark em { font-family: var(--ff-italic); color: var(--pink-hot); font-style: italic; }
.footer__sub { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; opacity: .65; }
.footer__meta { display: flex; gap: 16px; opacity: .75; flex-wrap: wrap; }
.footer__top {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid color-mix(in oklab, var(--ink) 20%, transparent);
  border-radius: 999px;
  transition: background .3s, color .3s, border-color .3s;
  min-height: 40px;
}
@media (hover: hover) {
  .footer__top:hover { background: var(--pink-hot); border-color: var(--pink-hot); color: var(--cream); }
}

/* ============================================================
   SCROLL REVEAL (for non-hero sections)
============================================================ */
.in-view-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.in-view {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(20px, 3vw, 32px);
  }
  .hero__meta   { order: 1; }
  .hero__title  { order: 2; }
  .hero__lede   { order: 3; }
  .hero__bottom { order: 4; }
  .hero__frame  {
    order: 5;
    aspect-ratio: 16/10;
    transform: none;
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
    border-radius: 0;
    box-shadow: none;
    margin-top: clamp(8px, 2vw, 20px);
  }
  .hero__title .reveal--italic { padding-left: clamp(20px, 6vw, 60px); }

  .uvod { padding: clamp(64px, 9vw, 120px) var(--gutter); }
  .uvod__grid { grid-template-columns: 1fr; }
  .uvod__side { position: static; flex-direction: row; align-items: center; gap: 20px; }
  .uvod__cols { grid-template-columns: 1fr; }

  .koncept { padding: clamp(64px, 9vw, 120px) 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-left: none; border-top: 1px solid color-mix(in oklab, var(--burgundy) 14%, transparent); }
  .step:last-child { border-right: none; border-bottom: 1px solid color-mix(in oklab, var(--burgundy) 14%, transparent); }

  .primjeri { padding: clamp(64px, 9vw, 120px) var(--gutter); }
  .cards { grid-template-columns: repeat(2, 1fr); row-gap: clamp(36px, 5vw, 60px); }
  .card--01, .card--02, .card--03, .card--04 { grid-column: auto; margin-top: 0; }
  .card--02, .card--04 { margin-top: clamp(20px, 4vw, 48px); }

  .proces { padding: clamp(64px, 9vw, 120px) 0; }
  .proces__inner { grid-template-columns: 1fr; gap: clamp(32px, 5vw, 56px); }
  .proces__media { max-width: 540px; margin-inline: auto; width: 100%; }

  .kontakt { padding: clamp(64px, 9vw, 130px) var(--gutter) clamp(48px, 6vw, 80px); }
  .kontakt__grid { grid-template-columns: 1fr 1fr; }
  .kontakt__lead { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav__inner { padding: 12px var(--gutter); }

  .nav__links {
    position: fixed; inset: 60px 0 auto 0;
    background: color-mix(in oklab, var(--cream) 96%, transparent);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    flex-direction: column; align-items: stretch;
    padding: 24px var(--gutter) 32px;
    gap: 4px;
    border-bottom: 1px solid color-mix(in oklab, var(--burgundy) 12%, transparent);
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform .45s var(--ease), opacity .35s;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a {
    font-size: 20px; font-family: var(--ff-display);
    padding: 14px 0;
    border-bottom: 1px solid color-mix(in oklab, var(--burgundy) 8%, transparent);
    width: 100%;
  }
  .nav__links a:last-child { border-bottom: none; }
  .nav__cta {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
    border-radius: 999px !important;
    padding: 14px 24px !important;
    font-family: var(--ff-body) !important;
    font-size: 15px !important;
  }
  .nav__toggle { display: inline-flex; }
  .nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .hero {
    padding-top: 32px;
    grid-template-rows: auto auto auto auto auto;
    gap: 22px;
  }
  .hero__meta { font-size: 10px; }
  .hero__title { letter-spacing: -.04em; }
  .hero__lede { max-width: none; }
  .hero__bottom { gap: 18px; }
  .hero__stats {
    padding-left: 18px;
    gap: 16px;
  }

  .uvod__side { flex-direction: column; align-items: flex-start; }
  .uvod__mark { width: 100px; }

  .pullquote { font-size: clamp(28px, 7vw, 40px); }

  .section-head--split { gap: 20px; }
  .section-head--split > div { flex: 1 1 100%; }
  .section-sub--right { flex: 1 1 100%; max-width: none; }

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

  .cards { grid-template-columns: 1fr; row-gap: clamp(40px, 8vw, 56px); }
  .card--02, .card--04 { margin-top: 0; }
  .card figure { aspect-ratio: 4/5; }

  .kontakt { padding-top: clamp(56px, 12vw, 90px); }
  .kontakt__grid { grid-template-columns: 1fr; gap: 32px; }
  .kontakt__slogan {
    font-size: clamp(48px, 14vw, 80px);
    margin-bottom: clamp(40px, 8vw, 64px);
  }
  .kontakt__slogan em { font-size: .35em; }

  .socials { flex-direction: row; flex-wrap: wrap; }
  .social { font-size: 13px; padding: 10px 14px; }

  .footer__inner { justify-content: flex-start; gap: 14px; }
}

@media (max-width: 480px) {
  :root { --gutter: 18px; }

  .nav__brand-mark { font-size: 26px; }
  .nav__brand-sub { display: none; }

  .hero {
    padding-top: 28px;
    padding-bottom: clamp(36px, 8vw, 60px);
    gap: 20px;
  }
  .hero__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .hero__title {
    font-size: clamp(54px, 14.5vw, 78px);
    line-height: .94;
  }
  .hero__title .reveal--italic { padding-left: 24px; font-size: 1.05em; }
  .hero__bottom { flex-direction: column; align-items: stretch; gap: 22px; }
  .hero__stats {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid color-mix(in oklab, var(--burgundy) 18%, transparent);
    padding-top: 18px;
    justify-content: space-between;
    width: 100%;
  }
  .hero__stats > div { gap: 4px; }
  .hero__stats b { font-size: 24px; }
  .hero__stats span { font-size: 9.5px; }
  .btn { width: 100%; justify-content: center; }

  .marquee { padding: 18px 0; }
  .marquee__track { gap: 28px; font-size: 32px; }

  .uvod__body { gap: 28px; }
  .pullquote { font-size: 28px; padding: 22px 0; }

  .section-head { gap: 14px; margin-bottom: clamp(32px, 7vw, 48px); }
  .section-sub { font-size: 14.5px; }

  .step { padding: 22px 18px; }
  .step__num { font-size: 36px; }
  .step h3 { font-size: 19px; }

  .card figure { aspect-ratio: 5/6; }
  .card h3 { font-size: 22px; }
  .card p { font-size: 14.5px; }

  .proces__list li { font-size: 17px; padding: 14px 0; }
  .proces__caption { font-size: 18px; left: 16px; bottom: 16px; }

  .kontakt__list a, .kontakt__list span:last-child { font-size: 18px; }
  .kontakt__sub { font-size: 15px; }

  .footer { padding: 22px var(--gutter) 28px; font-size: 12.5px; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01s !important; animation-delay: 0s !important; transition-duration: .01s !important; }
  .marquee__track { animation: none; }
  .uvod__mark { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .in-view-init { opacity: 1; transform: none; }
}
