/* ═══════════════════════════════════════════════
   Galerije i Muzeji — Global Stylesheet
   ═══════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --gold:       #B8933F;
  --gold-light: #D4AA5E;
  --gold-pale:  #FBF7EE;
  --dark:       #1A1612;
  --charcoal:   #3D3530;
  --white:      #FFFFFF;
  --off-white:  #FAFAF8;
  --border:     #E8E2D9;
  --text:       #1A1612;
  --text-mid:   #4A4240;
  --text-light: #8A807A;
  --surface:     #F5F2EC;
  --shadow-sm:   0 8px 30px rgba(36, 27, 18, 0.07);
  --shadow-lg:   0 24px 70px rgba(24, 18, 12, 0.14);
  --radius:      3px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 64px); height: 76px;
  backdrop-filter: blur(14px);
  transition: height .3s ease, box-shadow .3s ease, background .3s ease;
}
nav.scrolled { height: 64px; box-shadow: var(--shadow-sm); background: rgba(255,255,255,.94); }
.nav-logo {
  display:flex; align-items:center; gap:12px; width:auto; height:50px; text-decoration:none;
}
.nav-logo::before {
  content:''; display:block; flex:0 0 39px; width:39px; height:46px;
  background:url('../images/galerije-i-muzeji-logo.png') left center / 221px 46px no-repeat;
}
.nav-logo > svg { display:none; }
.nav-logo-text {
  font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark); white-space:nowrap;
}
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2.15vw, 34px); list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid);
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s ease; transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-lang {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mid); cursor: pointer; border: 1px solid var(--border);
  padding: 6px 14px; transition: all 0.2s; background: transparent;
}
.nav-lang:hover { border-color: var(--gold); color: var(--gold); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  backdrop-filter: blur(8px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; font-size: 20px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid);
  padding: 16px 32px; transition: color 0.2s; width: 100%; text-align: center;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }
.mobile-menu a:last-child { border-bottom: none; }

/* ── HERO (index slideshow) ── */
.hero {
  margin-top: 76px; height: min(820px, calc(100svh - 76px)); min-height: 600px;
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hs1 { background: linear-gradient(145deg, #2C1A0E 0%, #7A4A20 35%, #C49050 65%, #8B6010 100%); }
.hs2 { background: linear-gradient(145deg, #1A2A2C 0%, #305A50 40%, #70A090 70%, #3A6A60 100%); }
.hs3 { background: linear-gradient(145deg, #1A1A2A 0%, #303060 40%, #6080B0 70%, #404880 100%); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.28) 45%, rgba(0,0,0,0.04) 75%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 clamp(24px, 7vw, 112px) clamp(72px, 9vh, 104px); max-width: 920px; }
.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 22px;
}
.hero-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.5vw, 70px); font-weight: 700; line-height: 1.07;
  color: #fff; margin-bottom: 22px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.78);
  line-height: 1.75; margin-bottom: 40px; max-width: 500px;
}
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.hero-dots {
  position: absolute; bottom: 80px; right: 80px; display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
  width: 24px; height: 2px; background: rgba(255,255,255,0.3);
  cursor: pointer; border: none; transition: all 0.3s;
}
.hero-dot.active { background: var(--gold); width: 44px; }
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; z-index: 3; opacity: 0.5;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.9), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.5) translateY(-10px); }
  50% { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* ── PREMIUM EDITORIAL HERO ── */
.hero-editorial {
  --mx:0; --my:0;
  background:
    radial-gradient(circle at 72% 34%, rgba(198,151,60,.18), transparent 27%),
    linear-gradient(112deg, #0c0b0a 0%, #17130e 52%, #251b0d 100%);
  isolation:isolate;
}
.hero-photo {
  position:absolute;
  inset:0;
  z-index:0;
  background:url('../images/home-hero-rajka.jpg') center 46% / cover no-repeat;
  transform:scale(1.025);
  animation:heroPhotoIn 1.8s cubic-bezier(.16,.8,.2,1) both;
}
.hero-photo-track { position:absolute; inset:0; z-index:0; }
.hero-photo-slide {
  position:absolute; inset:0;
  background:url('../images/home-hero-rajka.jpg') center 46% / cover no-repeat;
  opacity:0; transform:scale(1.05);
  transition:opacity 1.8s cubic-bezier(.16,.8,.2,1), transform 8s cubic-bezier(.16,.8,.2,1);
}
.hero-photo-slide.active { opacity:1; transform:scale(1); }
.hero-photo-slide.hp2 { background-image:url('../images/home-hero-museum-v2.png'); background-position:center 38%; }
.hero-photo-slide.hp3 { background-image:none; background:linear-gradient(145deg, #2C1A0E 0%, #7A4A20 35%, #C49050 65%, #8B6010 100%); }
.hero-editorial::before {
  content:''; position:absolute; inset:0; z-index:1; opacity:.13; pointer-events:none;
  background-image:radial-gradient(rgba(255,255,255,.18) .45px,transparent .55px);
  background-size:5px 5px;
  mix-blend-mode:soft-light;
}
.hero-editorial::after {
  content:''; position:absolute; inset:0; z-index:2; pointer-events:none;
  background:linear-gradient(90deg,rgba(5,7,7,.91) 0%,rgba(6,8,8,.77) 31%,rgba(5,6,6,.28) 61%,rgba(5,5,4,.08) 82%), linear-gradient(0deg,rgba(0,0,0,.52),transparent 48%);
}
.hero-atmosphere { position:absolute; inset:0; z-index:1; overflow:hidden; opacity:.22; transform:translate(calc(var(--mx) * 10px),calc(var(--my) * 8px)); transition:transform .8s cubic-bezier(.2,.7,.2,1); }
.hero-glow { position:absolute; width:min(56vw,740px); aspect-ratio:1; right:4vw; top:50%; transform:translateY(-50%); border-radius:50%; background:radial-gradient(circle,rgba(196,144,47,.25) 0%,rgba(129,84,17,.1) 38%,transparent 68%); filter:blur(8px); animation:heroBreath 7s ease-in-out infinite; }
.hero-orbit { position:absolute; border:1px solid rgba(210,165,78,.22); border-radius:50%; right:8vw; top:50%; transform:translateY(-50%); }
.orbit-one { width:min(43vw,590px); aspect-ratio:1; animation:orbitDrift 13s ease-in-out infinite alternate; }
.orbit-two { width:min(31vw,430px); aspect-ratio:1; border-color:rgba(210,165,78,.12); animation:orbitDrift 9s ease-in-out -2s infinite alternate-reverse; }
.hero-columns { display:none; }
.hero-columns i { display:block; width:11%; height:67%; border:1px solid rgba(206,160,68,.4); border-top:6px solid rgba(206,160,68,.7); border-bottom:11px solid rgba(206,160,68,.55); box-shadow:inset 0 0 40px rgba(196,145,51,.05); animation:columnRise 1.35s both cubic-bezier(.18,.8,.24,1); }
.hero-columns i:nth-child(2) { height:84%; animation-delay:.12s; }
.hero-columns i:nth-child(3) { height:96%; animation-delay:.24s; }
.hero-columns i:nth-child(4) { height:79%; animation-delay:.36s; }
.hero-columns i:nth-child(5) { height:60%; animation-delay:.48s; }
.hero-edition { position:absolute; right:-12px; top:7%; z-index:1; font-family:'Playfair Display',serif; font-size:clamp(82px,13vw,196px); line-height:.72; font-weight:700; text-transform:uppercase; text-align:right; color:transparent; -webkit-text-stroke:1px rgba(255,255,255,.055); letter-spacing:-.06em; user-select:none; }
.hero-editorial .hero-content { z-index:3; padding-bottom:clamp(76px,10vh,116px); max-width:880px; }
.hero-editorial .hero-title { font-size:clamp(48px,6.5vw,92px); font-weight:500; letter-spacing:-.035em; line-height:.98; margin-bottom:28px; text-wrap:balance; }
.hero-editorial .hero-title em { color:#d2a74f; font-weight:400; }
.hero-editorial .hero-desc { max-width:580px; font-family:'Cormorant Garamond',serif; font-size:clamp(18px,1.7vw,23px); line-height:1.55; }
.hero-reveal { animation:revealUp .9s both cubic-bezier(.16,.8,.2,1); }
.hero-reveal.r1 { animation-delay:.08s; }
.hero-reveal.r2 { animation-delay:.2s; }
.hero-reveal.r3 { animation-delay:.36s; }
.hero-reveal.r4 { animation-delay:.5s; }
.hero-feature-stack { position:absolute; right:clamp(34px,6vw,94px); bottom:clamp(66px,9vh,102px); z-index:4; width:300px; min-height:198px; }
.hero-feature { position:absolute; inset:0; padding:25px 26px; color:#fff; text-decoration:none; border:1px solid rgba(255,255,255,.18); background:rgba(8,7,6,.46); backdrop-filter:blur(18px); opacity:0; pointer-events:none; transform:translateY(6px); transition:opacity .7s ease, transform .7s ease, background .3s, border-color .3s; }
.hero-feature.active { opacity:1; pointer-events:auto; transform:translateY(0); }
.hero-feature.active:hover { background:rgba(184,147,63,.14); border-color:rgba(210,167,83,.55); transform:translateY(-5px); }
.hero-feature-no { position:absolute; right:22px; top:18px; font-family:'Playfair Display',serif; font-size:36px; color:rgba(255,255,255,.09); }
.hero-feature-label { display:block; color:var(--gold-light); font-size:9px; letter-spacing:.18em; text-transform:uppercase; margin-bottom:27px; }
.hero-feature strong { display:block; font-family:'Playfair Display',serif; font-size:23px; font-weight:500; margin-bottom:7px; }
.hero-feature small { display:block; color:rgba(255,255,255,.5); font-size:11px; }
.hero-feature-link { display:flex; align-items:center; justify-content:space-between; padding-top:18px; margin-top:18px; border-top:1px solid rgba(255,255,255,.12); font-size:10px; letter-spacing:.12em; text-transform:uppercase; }
.hero-feature-link b { color:var(--gold-light); font-size:16px; font-weight:400; }
.hero-side-note { position:absolute; left:18px; top:50%; z-index:3; display:flex; align-items:center; gap:11px; transform:rotate(-90deg) translateX(-50%); transform-origin:left top; color:rgba(255,255,255,.35); font-size:9px; letter-spacing:.2em; text-transform:uppercase; }
.hero-side-note i { width:24px; height:1px; background:rgba(255,255,255,.24); }
.hero-editorial .scroll-hint { color:rgba(255,255,255,.45); text-decoration:none; font-size:8px; letter-spacing:.2em; text-transform:uppercase; gap:9px; }
@keyframes revealUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes heroPhotoIn { from { opacity:0; transform:scale(1.09); } to { opacity:1; transform:scale(1.025); } }
@keyframes columnRise { from { opacity:0; transform:translateY(100px) scaleY(.65); } to { opacity:1; transform:translateY(0) scaleY(1); } }
@keyframes heroBreath { 0%,100% { opacity:.62; transform:translateY(-50%) scale(.96); } 50% { opacity:1; transform:translateY(-50%) scale(1.04); } }
@keyframes orbitDrift { from { transform:translateY(-50%) rotate(-4deg) scale(.97); } to { transform:translateY(-50%) rotate(5deg) scale(1.03); } }

/* ── PAGE HERO BANNER (inner pages) ── */
.page-hero {
  margin-top: 76px; height: 360px; position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #2C1A0E 0%, #6A3A18 40%, #A06030 70%, #704010 100%);
  background-size: cover; background-position: center;
}
.page-hero-bg.bg-blue  { background: linear-gradient(145deg, #1A2A2C 0%, #1E3850 40%, #305A70 70%, #1A3048 100%); }
.page-hero-bg.bg-grey  { background: linear-gradient(145deg, #2A2A2A 0%, #444 40%, #666 70%, #333 100%); }
.page-hero-bg.bg-green { background: linear-gradient(145deg, #1A2C1A 0%, #2A4A2A 40%, #405840 70%, #304030 100%); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,14,10,.84), rgba(18,14,10,.36));
}
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 58px); font-weight: 700; color: #fff;
  line-height: 1.1;
}
.page-hero-sub {
  font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 10px;
  letter-spacing: 0.1em;
}

/* ── TICKER ── */
.ticker-bar {
  background: var(--dark); height: 46px; overflow: hidden;
  display: flex; align-items: center;
}
.ticker-label {
  background: var(--gold); color: #fff; font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 0 24px;
  height: 100%; display: flex; align-items: center; flex-shrink: 0;
}
.ticker-track { flex: 1; overflow: hidden; }
.ticker-inner {
  display: flex; animation: ticker 32s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-size: 13px; color: rgba(255,255,255,0.65); padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,0.12);
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  text-decoration: none; transition: color .2s;
}
.ticker-item:hover { color: var(--gold-light); }
.tdot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.cal-card.is-highlighted, .event-row.is-highlighted {
  animation: highlightPulse 2.2s ease;
}
@keyframes highlightPulse {
  0% { box-shadow: 0 0 0 3px rgba(184,147,63,0); }
  25% { box-shadow: 0 0 0 3px rgba(184,147,63,.65); }
  100% { box-shadow: 0 0 0 3px rgba(184,147,63,0); }
}

/* ── SHARED SECTION STYLES ── */
.section-wrap { padding: clamp(64px, 7vw, 96px) clamp(24px, 6vw, 88px); }
.section-wrap.alt { background: var(--off-white); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.section-kicker {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 2.8vw, 38px); font-weight: 600; line-height: 1.15; color: var(--dark);
}
.see-all {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; display: inline-flex; align-items: center;
  gap: 8px; white-space: nowrap; border-bottom: 1px solid transparent; transition: all 0.22s;
}
.see-all:hover { gap: 14px; border-color: var(--gold); }
.see-all::after { content: '→'; }

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold); color: #fff; text-decoration: none;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 36px; transition: background 0.22s; display: inline-block; border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  color: var(--gold); text-decoration: none;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 32px; border: 1px solid var(--gold); background: transparent;
  transition: all 0.22s; display: inline-block; cursor: pointer;
}
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-outline-white {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.45);
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-white:hover { color: #fff; border-color: #fff; gap: 14px; }
.btn-outline.btn-sm { padding: 9px 18px; font-size: 10.5px; }

/* ── DRUŠTVENE MREŽE (repeater na prijavi) ── */
.social-links-block { margin-top: 22px; }
.submission-field-label { display:block; font-size:10px; font-weight:500; letter-spacing:.12em; text-transform:uppercase; color:var(--text-mid); margin-bottom:12px; }
.social-link-row { display:grid; grid-template-columns:160px 1fr auto; gap:10px; margin-bottom:10px; align-items:center; }
.social-link-row select,.social-link-row input {
  border:1px solid var(--border); background:#fff; color:var(--text);
  padding:13px 14px; font:13.5px 'Inter',sans-serif; outline:none;
  transition:border-color .2s,box-shadow .2s;
}
.social-link-row select:focus,.social-link-row input:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(184,147,63,.1); }
.social-link-remove {
  width:38px; height:38px; border:1px solid var(--border); background:#fff; color:var(--text-light);
  font-size:16px; cursor:pointer; transition:all .2s; flex-shrink:0;
}
.social-link-remove:hover { border-color:#B03020; color:#B03020; }
@media (max-width: 640px) {
  .social-link-row { grid-template-columns:1fr; }
}

/* ── ABOUT ── */
.path-card { min-height: 190px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--dark); text-decoration: none; border-right: 1px solid var(--border); position: relative; overflow: hidden; transition: background .3s, color .3s; }
.path-card:last-child { border-right: 0; }
.path-card::after { content: '↗'; position: absolute; right: 24px; top: 22px; color: var(--gold); font-size: 20px; transition: transform .3s; }
.path-card:hover { background: var(--dark); color: var(--white); }
.path-card:hover::after { transform: translate(3px,-3px); }
.path-number { position: absolute; top: 24px; left: 28px; color: var(--gold); font-size: 10px; letter-spacing: .16em; }
.path-card strong { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; }
.path-card small { color: var(--text-light); font-size: 12px; margin-top: 8px; }
.path-card:hover small { color: rgba(255,255,255,.62); }
.about-strip {
  padding: clamp(44px, 5vw, 72px) clamp(24px, 7vw, 112px); display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: 52px; align-items: center; border-bottom: 1px solid var(--border);
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.6vw, 36px); font-weight: 600; line-height: 1.22;
  margin: 10px 0 18px; color: var(--dark);
}
.about-text p {
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400;
  line-height: 1.68; color: var(--text-mid); margin-bottom: 18px;
}
.about-text p:last-of-type { margin-bottom: 26px; }
.about-paths-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--border); }
.about-paths-grid .path-card { min-height: 150px; padding: 22px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-paths-grid .path-card:nth-child(2n) { border-right: 0; }
.about-paths-grid .path-card:nth-child(n+3) { border-bottom: 0; }
.about-paths-grid .path-card strong { font-size: 18px; }

/* ── EXHIBITIONS GRID ── */
.featured { padding: 80px; border-bottom: 1px solid var(--border); }
.exh-grid { display: grid; grid-template-columns: 1.65fr 1fr 1fr; gap: 2px; background: var(--border); }
.exh-card {
  background: var(--white); overflow: hidden; display: block;
  text-decoration: none; color: inherit; cursor: pointer;
}
.exh-img {
  width: 100%; aspect-ratio: 3/2; display: block; transition: transform 0.55s ease;
  overflow: hidden;
}
.exh-img-inner { width: 100%; height: 100%; transition: transform 0.55s ease; background-size: cover; background-position: center; }
.exh-card:hover .exh-img-inner { transform: scale(1.04); }
.ei1 { background: linear-gradient(145deg, #3D2C1A, #8C6035, #C49050); }
.ei2 { background: linear-gradient(145deg, #1A2C3D, #356090, #5090C0); }
.ei3 { background: linear-gradient(145deg, #2C1A3D, #603580, #9050C0); }
.exh-body { padding: 26px 28px; border-top: 2px solid transparent; transition: border-color 0.3s; }
.exh-card:hover .exh-body { border-color: var(--gold); }
.exh-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: block;
}
.exh-title {
  font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600;
  line-height: 1.25; color: var(--dark); margin-bottom: 10px;
}
.exh-card:first-child .exh-title { font-size: 25px; }
.exh-desc {
  font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--text-mid);
  line-height: 1.66; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.exh-meta {
  margin-top: 16px; font-size: 12px; color: var(--text-light);
  display: flex; align-items: center; gap: 8px;
}
.exh-meta::before { content: ''; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ── ARCHIVE GRID (izlozbe.html, blog.html) ── */
.archive-section { padding: clamp(56px, 7vw, 88px) clamp(24px, 6vw, 88px); max-width: 1500px; margin: 0 auto; }
.filter-bar {
  display: flex; gap: 12px; margin: -112px auto 56px; flex-wrap: wrap; align-items: center;
  position: relative; z-index: 4; padding: 18px; background: rgba(255,255,255,.98);
  border: 1px solid var(--border); box-shadow: var(--shadow-lg); max-width: 1100px;
}
.filter-bar input, .filter-bar select {
  font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text);
  border: 1px solid var(--border); padding: 14px 16px; background: var(--off-white);
  flex: 1; min-width: 160px; outline: none; transition: border-color 0.2s;
  appearance: none; -webkit-appearance: none;
}
.filter-bar input:focus, .filter-bar select:focus { border-color: var(--gold); }
.filter-bar select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A807A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 32px); }
.card {
  background: var(--white); border: 1px solid var(--border);
  text-decoration: none; color: inherit; display: block;
  transition: transform 0.35s, box-shadow 0.35s, border-color .35s; border-radius: var(--radius); overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(184,147,63,.55); }
.card-img {
  width: 100%; aspect-ratio: 3/2; overflow: hidden; display: block;
  background: linear-gradient(135deg, #D4C0A0, #A08060);
}
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #D4C0A0, #A08060); }
.card-body { padding: 24px; border-top: 2px solid transparent; transition: border-color 0.3s; }
.card:hover .card-body { border-color: var(--gold); }
.card-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: block;
}
.card-title {
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600;
  line-height: 1.25; color: var(--dark); margin-bottom: 10px;
}
.card-desc {
  font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--text-mid);
  line-height: 1.66; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 12px;
}
.card-meta {
  font-size: 12px; color: var(--text-light);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.card-meta svg { flex-shrink: 0; }
.read-more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; transition: gap 0.2s;
}
.read-more:hover { gap: 14px; }
.read-more::after { content: '→'; }

/* ── PAGINATION ── */
.pagination {
  display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 56px;
}
.page-btn {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500; border: 1px solid var(--border);
  text-decoration: none; color: var(--text-mid); transition: all 0.2s; cursor: pointer;
  background: var(--white);
}
.page-btn:hover, .page-btn.active { background: var(--gold); color: #fff; border-color: var(--gold); }
.page-btn.prev, .page-btn.next { width: auto; padding: 0 16px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── CALENDAR ── */
.calendar-strip { padding: clamp(64px, 7vw, 96px) clamp(24px, 7vw, 112px); background: var(--off-white); border-bottom: 1px solid var(--border); }
.events-list { border: 1px solid var(--border); }
.event-row {
  display: grid; grid-template-columns: 88px 1fr 32px;
  align-items: center; gap: 32px; padding: 22px 32px;
  border-bottom: 1px solid var(--border); background: var(--white);
  text-decoration: none; color: inherit; transition: background 0.2s;
  position: relative;
}
.event-row:last-child { border-bottom: none; }
.event-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); transform: scaleY(0); transition: transform 0.3s;
}
.event-row:hover { background: var(--gold-pale); }
.event-row:hover::before { transform: scaleY(1); }
.ev-date { text-align: center; }
.ev-day { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.ev-month { font-size: 10.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); display: block; margin-top: 2px; }
.ev-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 500; margin-bottom: 5px; color: var(--dark); }
.ev-loc { font-size: 12.5px; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.ev-arrow { font-size: 18px; color: var(--gold); opacity: 0; transition: opacity 0.2s, transform 0.2s; transform: translateX(-6px); }
.event-row:hover .ev-arrow { opacity: 1; transform: translateX(0); }

/* ── CALENDAR PAGE — CARD GRID ── */
.cal-grid { display: block; }
.cal-card {
  background: var(--white); border: 1px solid var(--border);
  text-decoration: none; color: inherit; display: block;
  transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden;
}
.cal-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }

/* Editorial polish and clearer information hierarchy */
.card-title, .blog-title, .inst-name, .cal-title { text-wrap: balance; }
.card-desc, .blog-excerpt, .inst-desc { text-wrap: pretty; }
.card-grid, .blog-grid, .institutions-grid, .artist-grid, .cal-grid { align-items: stretch; }
.card, .blog-card, .institution-card, .cal-card { height: 100%; }
.card-body, .blog-body, .inst-body, .cal-body { display: flex; flex-direction: column; }
.card .read-more, .blog-card .read-more, .institution-card .inst-actions { margin-top: auto; padding-top: 16px; }
.page-hero-content { width: min(900px, calc(100% - 48px)); }
.page-hero-title { text-wrap: balance; }
.page-hero-sub { max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.6; }
[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
.cal-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(135deg, #C0A074, #7A5830); position: relative;
}
.cal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cal-date-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.95); padding: 8px 12px; text-align: center;
  min-width: 52px;
}
.cal-badge-day { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.cal-badge-month { font-size: 9px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); display: block; margin-top: 1px; }
.cal-body { padding: 20px; }
.cal-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.3; }
.cal-info { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 5px; margin-bottom: 4px; }
.cal-toggle { display: flex; gap: 8px; margin-bottom: 32px; }

/* ── SLEDEĆI DOGAĐAJ (istaknuta kartica) ── */
.cal-featured-wrap { margin-bottom: 56px; }
.cal-featured-kicker { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.cal-featured-card {
  display: grid; grid-template-columns: minmax(0, 420px) 1fr;
  border: 1px solid var(--border); background: var(--white);
  box-shadow: 0 24px 60px -34px rgba(30,24,14,0.28);
}
.cal-featured-img { position: relative; background: var(--off-white); min-height: 320px; }
.cal-date-badge-lg { padding: 10px 14px; min-width: 62px; }
.cal-date-badge-lg .cal-badge-day { font-size: 26px; }
.cal-featured-body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.cal-featured-title { font-family: 'Playfair Display', serif; font-weight: 600; font-size: clamp(22px, 3vw, 30px); line-height: 1.2; color: var(--dark); margin-bottom: 22px; }
.cal-featured-meta { display: flex; flex-direction: column; gap: 12px; color: var(--text-mid); font-size: 14px; margin-bottom: 28px; }
.cal-featured-meta span { display: flex; align-items: center; gap: 8px; }
.cal-featured-btn {
  align-self: flex-start; border: 1px solid var(--gold); color: var(--gold);
  padding: 13px 26px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  transition: background .2s, color .2s;
}
.cal-featured-btn:hover { background: var(--gold); color: #fff; }

/* ── GRUPISANJE PO MESECIMA ── */
.cal-month-block:not(:first-child) { margin-top: 44px; }
.cal-month-group { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.cal-month-label { font-size: 13px; font-weight: 500; letter-spacing: 0.2em; color: var(--gold); margin: 0; white-space: nowrap; }
.cal-month-divider { flex: 1; height: 1px; background: var(--border); }
.cal-month-count { font-size: 12px; color: var(--text-light); }
.cal-grid-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cal-toggle-btn {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); cursor: pointer; background: #F4F1EA; color: var(--text-light); transition: all 0.2s;
}
.cal-toggle-btn.active, .cal-toggle-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.cal-toggle-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── CALENDAR PAGE — editorial planner ── */
.calendar-page { background:#f2f1ed; }
.calendar-hero { justify-content:flex-start; }
.calendar-hero .page-hero-bg {
  background:
    radial-gradient(circle at 76% 42%,rgba(198,154,70,.2),transparent 18%),
    repeating-linear-gradient(90deg,transparent 0,transparent calc(12.5% - 1px),rgba(255,255,255,.035) calc(12.5% - 1px),rgba(255,255,255,.035) 12.5%),
    #111716;
}
.calendar-hero .page-hero-overlay { background:linear-gradient(90deg,rgba(5,8,7,.42),rgba(5,8,7,.05)); }
.calendar-hero .page-hero-content { max-width:760px; margin-left:clamp(24px,7vw,112px); text-align:left; }
.calendar-hero-kicker { display:block; margin-bottom:18px; color:var(--gold-light); font-size:10px; font-weight:500; letter-spacing:.2em; text-transform:uppercase; }
.calendar-hero .page-hero-title { font-size:clamp(48px,6vw,82px); font-weight:500; letter-spacing:-.045em; }
.calendar-hero .page-hero-sub { margin:18px 0 0; max-width:590px; font-family:'Cormorant Garamond',serif; font-size:21px; color:rgba(255,255,255,.68); }
.calendar-hero-mark { position:absolute; right:clamp(28px,8vw,128px); top:50%; z-index:2; transform:translateY(-50%); display:flex; align-items:center; gap:18px; color:#fff; }
.calendar-hero-mark::before { content:''; position:absolute; width:150px; height:150px; left:-32px; top:50%; transform:translateY(-50%); border:1px solid rgba(198,154,70,.36); border-radius:50%; }
.calendar-hero-mark span { font-family:'Playfair Display',serif; font-size:clamp(60px,7vw,108px); line-height:1; color:var(--gold-light); }
.calendar-hero-mark small { font-size:10px; letter-spacing:.18em; line-height:1.5; color:rgba(255,255,255,.52); }
.calendar-page .archive-section { max-width:1320px; padding-top:0; }
.calendar-intro { display:flex; justify-content:space-between; align-items:flex-end; gap:40px; padding:52px 0 34px; border-bottom:1px solid #d8dbd5; }
.calendar-intro span { color:var(--gold); font-size:9px; letter-spacing:.18em; text-transform:uppercase; }
.calendar-intro h2 { margin-top:7px; font-family:'Playfair Display',serif; font-size:clamp(30px,3vw,43px); font-weight:500; letter-spacing:-.035em; }
.calendar-intro p { max-width:430px; color:var(--text-light); font-size:13px; line-height:1.7; }
.calendar-page .filter-bar { max-width:none; margin:0 0 36px; padding:18px 0; border:0; border-bottom:1px solid #d8dbd5; box-shadow:none; background:transparent; }
.calendar-page .filter-bar input,.calendar-page .filter-bar select { min-height:52px; border:1px solid #d9ddd6; border-radius:10px; background:#fff; }
.calendar-page .filter-bar input { flex:1.45; }
.calendar-toolbar { display:flex; flex-direction:column; gap:18px; margin-bottom:24px; padding-bottom:20px; border-bottom:1px solid var(--border); }
.calendar-toolbar > div:first-child { display:flex; align-items:center; gap:14px; }
.calendar-toolbar strong { color:var(--text-light); font-size:11px; font-weight:400; }
.calendar-toolbar .cal-toggle { align-self:flex-end; }
.calendar-page .cal-toggle { margin:0; }
.calendar-page .cal-toggle-btn { width:42px; height:42px; border-radius:9px; background:#F4F1EA; }
.calendar-page .cal-grid { gap:22px; }
.calendar-page .cal-card { border:0; border-radius:15px; box-shadow:0 12px 35px rgba(19,24,23,.06); }
.calendar-page .cal-card:hover { transform:translateY(-7px); box-shadow:0 22px 48px rgba(19,24,23,.12); }
.calendar-page .cal-img { aspect-ratio:16/10; }
.calendar-page .cal-img::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,.04),rgba(0,0,0,.2)); }
.cal-art-number { position:absolute; right:18px; bottom:-17px; z-index:1; color:rgba(255,255,255,.16); font-family:'Playfair Display',serif; font-size:94px; line-height:1; }
.calendar-page .cal-date-badge { top:18px; left:18px; z-index:2; min-width:50px; padding:8px 10px; border-radius:9px; box-shadow:0 8px 25px rgba(0,0,0,.14); }
.calendar-page .cal-badge-day { font-size:18px; }
.calendar-page .cal-body { min-height:178px; padding:24px; }
.calendar-page .cal-title { font-size:20px; font-weight:500; margin-bottom:18px; }
.calendar-page .cal-info { margin-top:6px; line-height:1.45; }
.calendar-page #calList { overflow:hidden; border:0; border-radius:14px; box-shadow:0 12px 35px rgba(19,24,23,.06); }
.calendar-page #calList .event-row { grid-template-columns:88px 1fr auto; min-height:96px; }

/* ── ARTISTS ── */
.artists-section { padding: 80px; border-bottom: 1px solid var(--border); }
.artists-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.artist-card { text-decoration: none; color: inherit; display: block; }
.artist-img-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; margin-bottom: 14px; }
.artist-bg { width: 100%; height: 100%; transition: transform 0.5s ease; }
.artist-card:hover .artist-bg { transform: scale(1.05); }
.ab1 { background: linear-gradient(165deg, #C8A870, #8A6035, #4A2A18); }
.ab2 { background: linear-gradient(165deg, #A8C0D4, #5A7890, #2A4858); }
.ab3 { background: linear-gradient(165deg, #B0C8A0, #607850, #304028); }
.ab4 { background: linear-gradient(165deg, #C8B0A8, #886050, #503028); }
.ab5 { background: linear-gradient(165deg, #C8C8A0, #888050, #504828); }
.ab6 { background: linear-gradient(165deg, #A8A8C8, #585880, #303048); }
.ab7 { background: linear-gradient(165deg, #C8A8B0, #885058, #503030); }
.ab8 { background: linear-gradient(165deg, #A8C8C8, #508080, #305050); }
.artist-img-wrap img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.5s; }
.artist-card:hover .artist-img-wrap img { transform: scale(1.05); }
.artist-hover {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.35s;
  display: flex; align-items: flex-end; padding: 16px;
}
.artist-card:hover .artist-hover { opacity: 1; }
.artist-hover span { font-size: 10.5px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); }
.artist-tag-badge {
  position: absolute; left: 12px; top: 12px; z-index: 2;
  background: rgba(20,17,12,0.72); color: #e9dcc0;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 11px;
}
.artist-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.artist-spec { font-size: 12px; color: var(--text-light); }
.home-artists { background:#f3f0e9; }
.artist-monogram { display:grid; place-items:center; color:rgba(255,255,255,.82); font-family:'Playfair Display',serif; font-size:clamp(42px,5vw,78px); font-weight:400; letter-spacing:-.08em; text-shadow:0 8px 26px rgba(0,0,0,.18); }
.home-artists .artist-img-wrap::after { content:''; position:absolute; inset:0; border:1px solid rgba(255,255,255,.18); pointer-events:none; }
.home-exhibitions { background:#171817; color:#fff; }
.home-exhibitions .section-title { color:#fff; }
.home-exhibitions .section-kicker,.home-exhibitions .see-all { color:var(--gold-light); }
.home-exhibitions .see-all::after { background:var(--gold-light); }
.home-exhibitions .exh-grid { background:rgba(255,255,255,.1); }
.home-exhibitions .exh-card { background:#202220; }
.home-exhibitions .exh-title { color:#fff; }
.home-exhibitions .exh-desc,.home-exhibitions .exh-meta { color:rgba(255,255,255,.55); }
.archive-visual { position:relative; display:flex; align-items:flex-end; justify-content:flex-end; padding:20px; overflow:hidden; }
.archive-visual::before,.archive-visual::after { content:''; position:absolute; border:1px solid rgba(255,255,255,.35); transform:rotate(18deg); }
.archive-visual::before { width:48%; aspect-ratio:1; left:17%; top:17%; }
.archive-visual::after { width:26%; aspect-ratio:1; left:37%; top:37%; border-radius:50%; }
.archive-visual span { position:relative; z-index:1; font-family:'Playfair Display',serif; font-size:48px; color:rgba(255,255,255,.14); }
.av1 { background:linear-gradient(145deg,#281914,#9b6030); }
.av2 { background:linear-gradient(145deg,#17252b,#457888); }
.av3 { background:linear-gradient(145deg,#29251a,#9b8036); }

/* ── BLOG ── */
.blog-section { padding: 80px; background: var(--off-white); border-bottom: 1px solid var(--border); }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.blog-card {
  background: var(--white); display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(0,0,0,0.09); }
.blog-img { width: 100%; aspect-ratio: 16/9; display: block; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.bi1 { background: linear-gradient(135deg, #C0A074, #7A5830); }
.bi2 { background: linear-gradient(135deg, #74A0C0, #305878); }
.bi3 { background: linear-gradient(135deg, #90C074, #406830); }
.blog-body { padding: 26px; }
.blog-date {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.blog-date::before { content: ''; width: 14px; height: 1px; background: var(--gold); }
.blog-title {
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600;
  line-height: 1.3; color: var(--dark); margin-bottom: 10px;
}
.blog-excerpt {
  font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--text-mid);
  line-height: 1.66; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* ── INSTITUTIONS GRID (galerije-muzeji) ── */
.institution-card {
  background: var(--white); border: 1px solid var(--border);
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.institution-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.inst-img { width: 100%; aspect-ratio: 3/2; overflow: hidden; }
.inst-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.institution-card:hover .inst-img img { transform: scale(1.04); }
.inst-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #D4C0A0, #A08060); }
.inst-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.inst-type { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.inst-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; color: var(--dark); margin-bottom: 6px; line-height: 1.2; }
.inst-city { font-size: 12px; color: var(--text-light); margin-bottom: 12px; }
.inst-desc { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--text-mid); line-height: 1.66; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 12px; }
.inst-hours { font-size: 12px; color: var(--text-light); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.inst-actions { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.inst-icons { display: flex; gap: 8px; }
.inst-icon-btn {
  width: 32px; height: 32px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--text-light); transition: all 0.2s; font-size: 12px;
}
.inst-icon-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── SINGLE PAGE (izlozba, institucija, umetnik) ── */
.page-header { max-width: 1200px; margin: 32px auto; padding: 0 80px; box-sizing: border-box; }
.page-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.2vw, 42px); font-weight: 700; color: var(--dark); line-height: 1.15; margin-bottom: 12px; max-width: 780px; }
.page-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-style: italic; color: var(--text-light); line-height: 1.4; max-width: 780px; }

.hero-media { width: 100%; max-width: 1200px; margin: 0 auto 48px; padding: 0 80px; box-sizing: border-box; }
.hero-media img { width: 100%; aspect-ratio: 2.2/1; object-fit: cover; display: block; border: 1px solid var(--border); }

.single-layout { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 64px; padding: 0 80px 80px; align-items: start; box-sizing: border-box; }
.single-content { min-width: 0; }
.single-sidebar { min-width: 0; position: sticky; top: 32px; }

/* ── DOGAĐAJ: fiksni baner (kao ostale single stranice), traka sa cinjenicama, mapa kao kartica ── */
.event-hero { width: 100%; max-width: 1200px; margin: 32px auto 0; padding: 0 80px; box-sizing: border-box; }
.event-hero img { width: 100%; aspect-ratio: 16/9; object-fit: contain; background: var(--off-white); display: block; border: 1px solid var(--border); }
.event-badges { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.event-cal-btn {
  display: block; text-align: center; background: var(--gold); color: #17130d;
  padding: 15px; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 20px; transition: background .2s; text-decoration: none;
}
.event-cal-btn:hover { background: #cda94e; }
.event-facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border);
  border: 1px solid var(--border); margin: 28px 0 36px;
}
.event-fact { background: var(--off-white); padding: 20px 18px; }
.event-fact-label { color: var(--gold); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 8px; }
.event-fact-value { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 20px; line-height: 1; color: var(--dark); }
.event-fact-sub { font-size: 13px; color: var(--text-light); margin-top: 5px; }
.event-map-card { display: block; position: relative; aspect-ratio: 3/2; overflow: hidden; border: 1px solid var(--border); margin-top: 20px; }
.event-map-card iframe { width: 100%; height: 100%; border: 0; display: block; pointer-events: none; }
.event-map-card span {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: var(--gold); color: #fff; font-size: 11px; letter-spacing: 0.1em;
  padding: 9px 16px; white-space: nowrap;
}
.rich-text { font-family: 'Cormorant Garamond', serif; font-size: 19.5px; line-height: 1.65; color: var(--text-mid); }
.rich-text p { margin-bottom: 1.5em; }
.rich-text h2 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600; color: var(--dark); margin: 2em 0 0.75em; }
.section-divider-head { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.section-divider-head h2 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600; color: var(--dark); margin: 0; }
.section-divider-line { flex: 1; height: 1px; background: var(--border); }
.back-link { display: inline-block; margin-top: 56px; color: var(--gold); font-size: 13px; letter-spacing: 0.06em; text-decoration: none; }
.back-link:hover { text-decoration: underline; }
.rich-text h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--dark); margin: 1.5em 0 0.5em; }
.rich-text img { max-width: 100%; height: auto; display: block; margin: 1.8em 0; }

.sidebar-box { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--border); }
.sidebar-box:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-title { font-size: 10.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.sidebar-title svg { flex-shrink: 0; }
.sidebar-info-item { display: flex; gap: 10px; font-size: 13.5px; color: var(--text-mid); margin-bottom: 8px; line-height: 1.5; }
.sidebar-info-item:last-child { margin-bottom: 0; }
.sidebar-info-item span { white-space: pre-line; }
.sidebar-info-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.sidebar-info-item a { color:inherit; text-decoration:none; border-bottom:1px solid var(--border); transition:color .2s,border-color .2s; }
.sidebar-info-item a:hover { color:var(--gold); border-color:var(--gold); }
.artist-business-card { position:relative; overflow:hidden; padding:27px; color:#fff; background:#151a19; box-shadow:0 20px 52px rgba(18,23,22,.16); }
.artist-business-card::after { content:'G&M'; position:absolute; right:-13px; bottom:-22px; color:rgba(255,255,255,.035); font-family:'Playfair Display',serif; font-size:82px; line-height:1; pointer-events:none; }
.artist-business-label { position:relative; z-index:1; margin-bottom:24px; color:var(--gold-light); font-size:8px; font-weight:500; letter-spacing:.19em; text-transform:uppercase; }
.artist-business-top { position:relative; z-index:1; display:flex; align-items:center; gap:14px; }
.artist-business-mark { width:48px; height:48px; flex:none; display:grid; place-items:center; border:1px solid rgba(211,170,89,.45); border-radius:50%; color:var(--gold-light); font-family:'Playfair Display',serif; font-size:15px; }
.artist-business-top strong,.artist-business-top small { display:block; }
.artist-business-top strong { font-family:'Playfair Display',serif; font-size:19px; font-weight:500; }
.artist-business-top small { margin-top:4px; color:rgba(255,255,255,.48); font-size:10px; line-height:1.4; }
.artist-business-meta { position:relative; z-index:1; display:flex; flex-wrap:wrap; gap:8px 14px; margin:23px 0; padding-top:18px; border-top:1px solid rgba(255,255,255,.11); }
.artist-business-meta span,.artist-business-meta a { color:rgba(255,255,255,.58); font-size:10px; text-decoration:none; }
.artist-business-meta a:hover { color:var(--gold-light); }
.artist-business-download { position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; min-height:43px; padding:0 14px; color:#191915; background:var(--gold); text-decoration:none; font-size:9px; font-weight:500; letter-spacing:.12em; text-transform:uppercase; transition:background .2s,transform .2s; }
.artist-business-download::after { content:'↓'; font-size:16px; }
.artist-business-download.is-external::after { content:'↗'; }
.artist-business-download:hover { background:var(--gold-light); transform:translateY(-2px); }

/* Lightbox Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 32px; }
.gallery-item {
  aspect-ratio: 4/3; overflow: hidden; cursor: pointer;
  background: linear-gradient(135deg, #D4C0A0, #A08060); position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '+'; position: absolute; inset: 0; background: rgba(0,0,0,0.35);
  color: #fff; font-size: 28px; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.lightbox {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 999; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 28px; font-size: 36px; color: #fff;
  cursor: pointer; background: none; border: none; line-height: 1; opacity: 0.7; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 32px; color: #fff; cursor: pointer; background: none; border: none;
  opacity: 0.6; transition: opacity 0.2s; padding: 20px;
}
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }

/* ── CONTACT ── */
.contact-section {
  padding: 80px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 600;
  color: var(--dark); margin-bottom: 28px;
}
.contact-info-item {
  display: flex; gap: 14px; margin-bottom: 22px; font-size: 15px; color: var(--text-mid);
  line-height: 1.55;
}
.contact-info-item svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.contact-info-item a { color: var(--gold); text-decoration: none; }
.contact-info-item a:hover { text-decoration: underline; }
.contact-form { width: 100%; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-mid); margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text);
  border: 1px solid var(--border); padding: 14px 16px; background: var(--white);
  outline: none; transition: border-color 0.2s; resize: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { min-height: 140px; }
.map-section { padding: 0 80px 80px; }
.map-section iframe { width: 100%; height: 420px; border: 1px solid var(--border); display: block; }

/* ── VIRTUELNA TURA (iframe) ── */
.virtual-tour-wrap {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border: 1px solid var(--border); overflow: hidden; margin: 32px 0;
  background: var(--off-white);
}
.virtual-tour-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* ── G&M STUDIO ── */
.studio-page { background:#f2f1ed; }
.studio-hero { position:relative; min-height:720px; margin-top:76px; padding:clamp(80px,10vw,150px) clamp(24px,7vw,112px); display:flex; align-items:center; overflow:hidden; color:#fff; background:radial-gradient(circle at 77% 43%,rgba(196,151,60,.22),transparent 19%),#101514; }
.studio-hero-photo { position:absolute; inset:0; z-index:0; background:url('../images/gm-studio-hero.webp') center 38% / cover no-repeat; }
.studio-hero::after { content:''; position:absolute; inset:0; z-index:1; pointer-events:none; background:linear-gradient(100deg, rgba(8,7,6,.9) 0%, rgba(8,7,6,.74) 32%, rgba(8,7,6,.36) 60%, rgba(8,7,6,.12) 82%), linear-gradient(0deg, rgba(6,5,4,.5), transparent 45%); }
.studio-hero::before { content:''; position:absolute; inset:0; z-index:2; background:repeating-linear-gradient(90deg,transparent 0,transparent calc(10% - 1px),rgba(255,255,255,.03) calc(10% - 1px),rgba(255,255,255,.03) 10%); }
.studio-hero-copy { position:relative; z-index:3; max-width:790px; }
.studio-kicker,.studio-section-head span { color:var(--gold-light); font-size:9px; font-weight:500; letter-spacing:.2em; text-transform:uppercase; }
.studio-hero h1 { margin:20px 0 28px; font-family:'Playfair Display',serif; font-size:clamp(55px,7.3vw,104px); font-weight:500; letter-spacing:-.055em; line-height:.94; }
.studio-hero h1 em { color:var(--gold-light); font-weight:400; }
.studio-hero-copy > p { max-width:650px; font-family:'Cormorant Garamond',serif; font-size:clamp(19px,1.6vw,24px); line-height:1.55; color:rgba(255,255,255,.64); }
.studio-hero .hero-actions { margin-top:38px; }
.studio-hero-object { position:absolute; right:5%; top:50%; z-index:2; width:min(34vw,510px); aspect-ratio:1; transform:translateY(-50%); border:1px solid rgba(198,154,70,.2); border-radius:50%; }
.studio-hero-object::before,.studio-hero-object::after,.studio-hero-object i { content:''; position:absolute; border:1px solid rgba(198,154,70,.25); }
.studio-hero-object::before { inset:17%; transform:rotate(45deg); }
.studio-hero-object::after { inset:31%; border-radius:50%; }
.studio-hero-object i:nth-child(1) { width:1px; height:130%; left:50%; top:-15%; }
.studio-hero-object i:nth-child(2) { width:130%; height:1px; top:50%; left:-15%; }
.studio-hero-object i:nth-child(3) { inset:7%; border-radius:50%; border-color:rgba(255,255,255,.06); }
.studio-hero-object span { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); font-family:'Playfair Display',serif; font-size:72px; color:rgba(255,255,255,.08); }
.studio-scroll { position:absolute; right:30px; bottom:30px; z-index:2; color:rgba(255,255,255,.24); font-size:8px; letter-spacing:.24em; writing-mode:vertical-rl; }
.studio-intro { max-width:1400px; margin:auto; padding:110px clamp(24px,7vw,112px); display:grid; grid-template-columns:70px 1fr 1fr; gap:50px; align-items:start; }
.studio-index { font-family:'Playfair Display',serif; font-size:48px; color:rgba(184,147,63,.28); }
.studio-intro h2,.studio-section-head h2,.studio-proof-copy h2,.studio-cta h2 { font-family:'Playfair Display',serif; font-weight:500; letter-spacing:-.04em; line-height:1.08; }
.studio-intro h2 { max-width:570px; margin-top:12px; font-size:clamp(34px,4vw,56px); }
.studio-intro > p, .studio-intro-copy p { max-width:520px; padding-top:27px; font-family:'Cormorant Garamond',serif; font-size:20px; line-height:1.7; color:var(--text-mid); }
.studio-intro-copy p { padding-top:0; margin-bottom:18px; }
.studio-intro-copy p:last-child { margin-bottom:0; }
.studio-services,.studio-process { padding:100px clamp(24px,7vw,112px); background:#fff; }
.studio-section-head { display:flex; justify-content:space-between; align-items:end; gap:30px; margin-bottom:50px; }
.studio-section-head h2 { margin-top:9px; font-size:clamp(38px,4.5vw,64px); }
.studio-section-head h2 .amp { font-style:italic; font-weight:400; color:var(--gold); padding:0 .04em; }
.studio-section-head > p { max-width:350px; color:var(--text-light); font-size:13px; line-height:1.65; }
.studio-service-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--border); border-left:1px solid var(--border); }
.studio-service { position:relative; min-height:420px; padding:30px; display:flex; flex-direction:column; border-right:1px solid var(--border); border-bottom:1px solid var(--border); transition:background .3s,color .3s,transform .3s; }
.studio-service:hover,.studio-service.featured-service { color:#fff; background:#151a19; transform:translateY(-5px); }
.service-no { color:var(--gold); font-size:9px; letter-spacing:.17em; }
.service-symbol { margin:auto 0 45px; color:rgba(184,147,63,.35); font-family:'Playfair Display',serif; font-size:52px; }
.studio-service h3 { font-family:'Playfair Display',serif; font-size:24px; font-weight:500; }
.studio-service p { margin:15px 0 25px; color:var(--text-light); font-size:13px; line-height:1.7; }
.studio-service:hover p,.studio-service.featured-service p { color:rgba(255,255,255,.52); }
.studio-service small { margin-top:auto; color:var(--gold); font-size:9px; line-height:1.6; text-transform:uppercase; letter-spacing:.08em; }
.studio-proof { display:grid; grid-template-columns:1.05fr .95fr; min-height:650px; background:#171b1a; }
.studio-proof-visual { position:relative; overflow:hidden; display:flex; align-items:flex-end; padding:60px; background:radial-gradient(circle at 62% 38%,rgba(198,154,70,.3),transparent 20%),linear-gradient(145deg,rgba(38,26,18,.88),rgba(17,23,22,.93) 65%),url('../images/gm-studio-proof.webp') center 30% / cover no-repeat; }
.studio-proof-visual::before { content:''; position:absolute; width:58%; aspect-ratio:1; right:10%; top:12%; border:1px solid rgba(198,154,70,.34); border-radius:50%; box-shadow:0 0 0 55px rgba(198,154,70,.04),0 0 0 110px rgba(198,154,70,.025); }
.studio-proof-visual span { position:relative; z-index:1; color:#fff; font-family:'Playfair Display',serif; font-size:clamp(42px,5vw,72px); line-height:.95; }
.studio-proof-visual em { color:var(--gold-light); }
.studio-proof-copy { padding:clamp(55px,7vw,105px); align-self:center; color:#fff; }
.studio-proof-copy h2 { margin:14px 0 26px; font-size:clamp(38px,4vw,58px); }
.studio-proof-copy p { margin-bottom:35px; font-family:'Cormorant Garamond',serif; font-size:20px; line-height:1.7; color:rgba(255,255,255,.58); }
.studio-process { background:#eeece6; }
.studio-process-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid #d8d4ca; }
.studio-process-grid > div { min-height:220px; padding:30px 26px; border-right:1px solid #d8d4ca; }
.studio-process-grid > div:last-child { border-right:0; }
.studio-process-grid b,.studio-process-grid strong { display:block; }
.studio-process-grid b { margin-bottom:55px; color:var(--gold); font-family:'Playfair Display',serif; font-size:24px; font-weight:400; }
.studio-process-grid strong { font-family:'Playfair Display',serif; font-size:20px; font-weight:500; }
.studio-process-grid p { margin-top:10px; color:var(--text-light); font-size:12px; line-height:1.6; }
.studio-cta { padding:120px 24px; text-align:center; color:#fff; background:#101514; }
.studio-cta > span { color:var(--gold-light); font-size:9px; letter-spacing:.18em; text-transform:uppercase; }
.studio-cta h2 { margin:18px 0 26px; font-size:clamp(40px,5.5vw,76px); }
.studio-cta p { max-width:620px; margin:0 auto 34px; font-family:'Cormorant Garamond',serif; font-size:19px; line-height:1.7; color:rgba(255,255,255,.6); }

/* ── ZAŠTO G&M STUDIO ── */
.studio-why { padding:100px clamp(24px,7vw,112px); background:#fff; }
.studio-why-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--border); border-left:1px solid var(--border); }
.studio-why-grid > div { padding:34px 28px; border-right:1px solid var(--border); border-bottom:1px solid var(--border); }
.studio-why-grid strong { display:block; margin-bottom:14px; font-family:'Playfair Display',serif; font-size:20px; font-weight:500; color:var(--dark); }
.studio-why-grid p { color:var(--text-light); font-size:13px; line-height:1.7; }

/* ── PROJEKTI (REFERENCE) ── */
.studio-projects { padding:100px clamp(24px,7vw,112px); background:#eeece6; }
.studio-projects-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--border); }
.studio-project-card { background:#fff; display:flex; flex-direction:column; }
.studio-project-img { aspect-ratio:4/3; overflow:hidden; background:linear-gradient(145deg,#2C1A0E,#7A4A20,#C49050); }
.studio-project-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease; }
.studio-project-card:hover .studio-project-img img { transform:scale(1.04); }
.studio-project-body { padding:24px 26px; flex:1; display:flex; flex-direction:column; }
.studio-project-tag { color:var(--gold); font-size:9px; font-weight:500; letter-spacing:.12em; text-transform:uppercase; margin-bottom:10px; }
.studio-project-title { font-family:'Playfair Display',serif; font-size:19px; font-weight:500; margin-bottom:8px; color:var(--dark); }
.studio-project-desc { color:var(--text-mid); font-size:13px; line-height:1.65; margin-bottom:0; }
.studio-projects-empty { text-align:center; padding:60px 24px; font-family:'Cormorant Garamond',serif; font-size:19px; color:var(--text-light); }

@media(max-width:1000px){
  .studio-why-grid { grid-template-columns:1fr 1fr; }
  .studio-projects-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px){
  .studio-why { padding:70px 24px; }
  .studio-projects { padding:70px 24px; }
  .studio-why-grid { grid-template-columns:1fr; }
  .studio-projects-grid { grid-template-columns:1fr; }
}

@media(max-width:1000px){.studio-service-grid{grid-template-columns:1fr 1fr}.studio-intro{grid-template-columns:50px 1fr}.studio-intro>p{grid-column:2}.studio-hero-object{opacity:.35}.studio-proof{grid-template-columns:1fr}.studio-proof-visual{min-height:500px}}
@media(max-width:768px){.studio-hero{min-height:680px;padding-top:90px}.studio-hero h1{font-size:54px}.studio-hero-object{width:76vw;right:-30%;opacity:.22}.studio-intro{padding-top:70px;padding-bottom:70px;grid-template-columns:1fr;gap:22px}.studio-intro>p{grid-column:auto;padding-top:0}.studio-index{font-size:30px}.studio-service-grid,.studio-process-grid{grid-template-columns:1fr}.studio-service{min-height:340px}.studio-process-grid>div{border-right:0;border-bottom:1px solid #d8d4ca}.studio-proof-visual{min-height:390px;padding:35px}.studio-section-head{align-items:start;flex-direction:column}.studio-services,.studio-process{padding-top:70px;padding-bottom:70px}}

/* ── SPONSORS ── */
.sponsors-bar {
  padding: 44px 80px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 48px;
}
.sp-label { font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); white-space: nowrap; flex-shrink: 0; }
.sp-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }
.sp-logos { display: flex; align-items: center; gap: 44px; flex: 1; flex-wrap: wrap; }
.sp-logo {
  font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700;
  color: var(--text-light); opacity: 0.45; text-decoration: none; transition: opacity 0.2s;
}
.sp-logo:hover { opacity: 0.85; }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 64px 80px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 48px; margin-bottom: 52px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.f-logo { display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.f-logo::before { content:''; display:block; width:34px; height:40px; flex:0 0 34px; background:url('../images/galerije-i-muzeji-logo.png') left center / 192px 40px no-repeat; }
.f-logo > svg { display:none; }
.f-logo-text { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; }
.f-desc { font-family: 'Cormorant Garamond', serif; font-size: 16px; line-height: 1.72; color: rgba(255,255,255,0.5); margin-bottom: 26px; }
.f-social { display: flex; gap: 10px; }
.f-social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.55); font-size: 12px;
  transition: all 0.2s;
}
.f-social a:hover { border-color: var(--gold); color: var(--gold); }
.f-col-title { font-size: 10.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.f-links a { text-decoration: none; font-size: 13.5px; color: rgba(255,255,255,0.52); transition: color 0.2s; display: flex; align-items: center; gap: 7px; }
.f-links a::before { content: '›'; color: var(--gold); font-size: 15px; }
.f-links a:hover { color: rgba(255,255,255,0.88); }
.f-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.52); margin-bottom: 12px; line-height: 1.55; }
.f-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 11.5px; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── PRIJAVA UMETNIKA ── */
.submission-hero { margin-top:76px; min-height:460px; padding:90px clamp(24px,7vw,112px) 70px; display:grid; grid-template-columns:1.2fr .8fr; gap:80px; align-items:end; color:#fff; background:radial-gradient(circle at 78% 30%,rgba(184,147,63,.2),transparent 24%),linear-gradient(120deg,#0d0c0a,#21180d); position:relative; overflow:hidden; }
.submission-hero::after { content:''; position:absolute; right:8%; top:-30%; width:480px; height:720px; border:1px solid rgba(212,170,94,.16); transform:rotate(24deg); }
.submission-hero-copy { position:relative; z-index:1; }
.submission-hero h1 { font-family:'Playfair Display',serif; font-size:clamp(46px,6vw,82px); font-weight:500; line-height:1; letter-spacing:-.035em; margin:14px 0 24px; }
.submission-hero h1 em { color:var(--gold-light); font-weight:400; }
.submission-hero-copy p { max-width:630px; font-family:'Cormorant Garamond',serif; font-size:21px; line-height:1.6; color:rgba(255,255,255,.66); }
.submission-steps { position:relative; z-index:1; display:grid; grid-template-columns:repeat(3,1fr); border:1px solid rgba(255,255,255,.16); background:rgba(0,0,0,.2); backdrop-filter:blur(12px); }
.submission-steps div { padding:23px 18px; border-right:1px solid rgba(255,255,255,.13); }
.submission-steps div:last-child { border-right:0; }
.submission-steps span { display:block; color:var(--gold-light); font-size:9px; letter-spacing:.16em; margin-bottom:24px; }
.submission-steps strong,.submission-steps small { display:block; }
.submission-steps strong { font-family:'Playfair Display',serif; font-size:17px; font-weight:500; }
.submission-steps small { color:rgba(255,255,255,.4); font-size:10px; margin-top:5px; }
.submission-layout { max-width:1500px; margin:0 auto; padding:90px clamp(24px,7vw,112px) 120px; display:grid; grid-template-columns:280px minmax(0,1fr); gap:70px; align-items:start; }
.submission-aside { position:sticky; top:100px; }
.submission-aside h2 { font-family:'Playfair Display',serif; font-size:27px; font-weight:600; margin:9px 0 23px; }
.submission-aside ul { list-style:none; border-top:1px solid var(--border); }
.submission-aside li { padding:14px 0 14px 23px; border-bottom:1px solid var(--border); font-size:13px; color:var(--text-mid); position:relative; line-height:1.5; }
.submission-aside li::before { content:'✓'; position:absolute; left:0; color:var(--gold); }
.submission-note { margin-top:24px; padding:18px; background:var(--gold-pale); border-left:3px solid var(--gold); font-size:11px; color:var(--text-mid); line-height:1.65; }
.artist-submission { min-width:0; }
.submission-section { padding:34px; margin-bottom:22px; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow-sm); }
.submission-section-head { display:flex; gap:20px; align-items:flex-start; margin-bottom:28px; padding-bottom:22px; border-bottom:1px solid var(--border); }
.submission-section-head > span { color:var(--gold); font-size:10px; letter-spacing:.16em; padding-top:6px; }
.submission-section-head h2 { font-family:'Playfair Display',serif; font-size:24px; font-weight:600; }
.submission-section-head p { margin-top:4px; color:var(--text-light); font-size:12px; line-height:1.5; }
.submission-grid { display:grid; grid-template-columns:1fr 1fr; gap:19px; }
.submission-field { display:flex; flex-direction:column; gap:7px; min-width:0; }
.submission-field.span2 { grid-column:span 2; }
.submission-field > span,.work-preview label span { font-size:10px; font-weight:500; letter-spacing:.12em; text-transform:uppercase; color:var(--text-mid); }
.submission-field input,.submission-field textarea,.work-preview input { width:100%; border:1px solid var(--border); background:#fff; color:var(--text); padding:13px 14px; font:13.5px 'Inter',sans-serif; outline:none; transition:border-color .2s,box-shadow .2s; }
.submission-field input:focus,.submission-field textarea:focus,.work-preview input:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(184,147,63,.1); }
.submission-field textarea { resize:vertical; min-height:120px; line-height:1.65; }
.submission-field small { color:var(--text-light); font-size:10px; }
.upload-pair { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.upload-zone { min-height:210px; border:1px dashed #cfc5b4; background:var(--off-white); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:24px; cursor:pointer; position:relative; overflow:hidden; transition:border-color .2s,background .2s; }
.upload-zone:hover { border-color:var(--gold); background:var(--gold-pale); }
.upload-zone input { position:absolute; inset:0; opacity:0; cursor:pointer; }
.upload-zone .upload-icon { display:grid; place-items:center; width:38px; height:38px; border:1px solid var(--gold); color:var(--gold); font-size:22px; margin-bottom:14px; }
.upload-zone strong { font-family:'Playfair Display',serif; font-size:17px; font-weight:600; }
.upload-zone small { color:var(--text-light); font-size:10px; margin-top:6px; }
.upload-zone img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.upload-zone.has-file::after { content:'Promeni fotografiju'; position:absolute; left:12px; bottom:12px; padding:7px 10px; background:rgba(0,0,0,.72); color:#fff; font-size:9px; letter-spacing:.1em; text-transform:uppercase; }
.work-previews { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:18px; }
.work-preview { border:1px solid var(--border); background:#fff; position:relative; }
.work-remove-btn {
  position:absolute; top:8px; right:8px; z-index:2; width:24px; height:24px;
  border:none; border-radius:50%; background:rgba(0,0,0,.68); color:#fff;
  font-size:15px; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:background .2s;
}
.work-remove-btn:hover { background:#B03020; }
.work-preview img { width:100%; aspect-ratio:4/3; object-fit:cover; display:block; }
.work-preview label { display:flex; flex-direction:column; gap:6px; padding:12px; }
.work-preview label:not(:first-of-type) { padding-top:0; }
.work-meta-row { display:grid; grid-template-columns:1fr 1fr; gap:10px; padding:0 12px; }
.work-meta-row label { padding:0; }
.consent-row { display:flex; align-items:flex-start; gap:12px; margin-top:16px; color:var(--text-mid); font-size:12px; line-height:1.55; cursor:pointer; }
.consent-row input { margin-top:3px; accent-color:var(--gold); }
.submission-honeypot { position:absolute; left:-9999px; }
.submission-submit { position:sticky; bottom:0; z-index:10; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:18px 22px; background:rgba(255,255,255,.96); border:1px solid var(--border); box-shadow:0 -10px 36px rgba(26,22,18,.08); backdrop-filter:blur(12px); }
.submission-submit strong,.submission-submit small { display:block; }
.submission-submit strong { font-family:'Playfair Display',serif; font-size:16px; }
.submission-submit small { color:var(--text-light); font-size:10px; margin-top:3px; }
.submission-message { margin-top:18px; padding:20px; border-left:4px solid; font-size:13px; line-height:1.6; }
.submission-message strong,.submission-message span { display:block; }
.submission-message.success { color:#145a32; background:#eef9f3; border-color:#27ae60; }
.submission-message.error { color:#8b1a10; background:#fef0ee; border-color:#c0392b; }
.submission-footer { display:flex; justify-content:space-between; gap:20px; padding:24px clamp(24px,7vw,112px); background:var(--dark); color:rgba(255,255,255,.35); font-size:11px; }
.submission-footer a { color:var(--gold-light); text-decoration:none; }
.artist-callout { margin:0 clamp(24px,6vw,88px) 88px; padding:42px 48px; display:flex; align-items:center; justify-content:space-between; gap:30px; color:#fff; background:linear-gradient(115deg,#17130e,#2b1f10); }
.artist-callout h2 { font-family:'Playfair Display',serif; font-size:clamp(25px,3vw,38px); font-weight:500; margin:7px 0 9px; }
.artist-callout p { color:rgba(255,255,255,.55); font-family:'Cormorant Garamond',serif; font-size:17px; }
.amend-body { min-height:100vh; background:linear-gradient(120deg,#f7f5f2,#fbf7ee); padding:50px 24px; }
.amend-wrap { max-width:1050px; margin:auto; }
.amend-brand { display:inline-block; margin-bottom:50px; color:var(--dark); font-family:'Playfair Display',serif; font-size:16px; font-weight:600; text-decoration:none; letter-spacing:.1em; text-transform:uppercase; }
.amend-wrap header { margin-bottom:30px; }
.amend-wrap h1 { font-family:'Playfair Display',serif; font-size:42px; font-weight:600; margin:8px 0; }
.amend-wrap header p { color:var(--text-light); }
.amend-form { padding:30px; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow-sm); }
.amend-form .btn-gold { margin-top:24px; }
.legal-page { max-width:820px; margin:0 auto; padding:65px 28px 110px; }.legal-page h1 { font-family:'Playfair Display',serif; font-size:clamp(38px,6vw,62px); line-height:1.05; margin:14px 0 10px; }.legal-updated { color:var(--text-light); font-size:11px; margin-bottom:48px; }.legal-page h2 { font-family:'Playfair Display',serif; font-size:24px; margin:34px 0 9px; }.legal-page p { font-family:'Cormorant Garamond',serif; color:var(--text-mid); font-size:18px; line-height:1.75; }.legal-page a { color:var(--gold); }.legal-page .amend-brand { color:var(--dark); }.legal-note { margin-top:45px; padding:20px; background:var(--gold-pale); border-left:3px solid var(--gold); font-family:'Inter',sans-serif!important; font-size:11px!important; }

/* ── FADE-IN ── */
.fi { opacity: 0; transform: translateY(22px); transition: opacity 0.72s ease, transform 0.72s ease; }
.fi.vis { opacity: 1; transform: translateY(0); }
.fi.d1 { transition-delay: 0.1s; }
.fi.d2 { transition-delay: 0.2s; }
.fi.d3 { transition-delay: 0.32s; }
.fi.d4 { transition-delay: 0.44s; }

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: 1200px; margin: 70px auto 0; padding: 14px 80px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-light); box-sizing: border-box;
}
.breadcrumb a { color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── BLOG SINGLE ── */
.blog-single-layout { max-width: 960px; margin: 0 auto; padding: 80px; }
.blog-single-header { margin-bottom: 40px; }
.blog-single-header .blog-date { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.blog-single-header .blog-date::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.blog-single-title { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.5vw, 44px); font-weight: 700; line-height: 1.12; color: var(--dark); margin-bottom: 20px; }
.blog-single-hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; margin-bottom: 40px; }
.blog-single-hero-placeholder { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, #C0A074, #7A5830); display: block; margin-bottom: 40px; }
.share-row { display: flex; align-items: center; gap: 12px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.share-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); margin-right: 4px; }
.share-btn {
  width: 36px; height: 36px; border: 1px solid var(--border); display: flex;
  align-items: center; justify-content: center; text-decoration: none;
  color: var(--text-light); font-size: 13px; transition: all 0.2s; cursor: pointer;
  background: none;
}
.share-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── RELATED ── */
.related-section { padding: 80px; border-top: 1px solid var(--border); background: var(--off-white); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .card-grid, .cal-grid, .cal-grid-inner { grid-template-columns: repeat(2, 1fr); }
  .cal-featured-card { grid-template-columns: 1fr; }
  .cal-featured-img { min-height: 240px; }
  .artists-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-feature { width:255px; right:38px; }
  .hero-editorial .hero-content { max-width:720px; }
}

@media (max-width: 1100px) {
  nav { padding: 0 40px; }
  .about-strip, .featured, .calendar-strip, .artists-section, .blog-section, .sponsors-bar { padding-left: 40px; padding-right: 40px; }
  .section-wrap { padding: 60px 40px; }
  .archive-section { padding: 60px 40px; }
  .contact-section { padding: 60px 40px; gap: 48px; }
  .map-section { padding: 0 40px 60px; }
  footer { padding: 48px 40px 28px; }
  .hero-content { padding: 0 44px 72px; }
  .hero-dots { right: 44px; }
  .exh-grid { grid-template-columns: 1fr 1fr; }
  .exh-card:first-child { grid-column: span 2; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .single-layout { padding: 60px 40px; gap: 40px; }
  .page-header { padding: 0 40px; }
  .hero-media { padding: 0 40px; }
  .breadcrumb { padding: 14px 40px; }
  .blog-single-layout { padding: 60px 40px; }
}

@media (max-width: 900px) {
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { position: static; }
  .event-facts { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-feature-stack { display:none; }
  .hero-columns { right:5vw; width:44vw; opacity:.42; }
  .hero-orbit { right:-5vw; }
  .submission-hero { grid-template-columns:1fr; gap:45px; }
  .submission-layout { grid-template-columns:1fr; gap:36px; }
  .submission-aside { position:static; }
  .calendar-hero-mark { opacity:.2; right:20px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-logo { width:205px; height:44px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 0 24px 60px; }
  .hero-editorial { min-height:620px; }
  .hero-editorial .hero-content { padding:0 28px 74px; }
  .hero-editorial .hero-title { font-size:clamp(43px,13vw,62px); }
  .hero-editorial .hero-desc { font-size:18px; max-width:92%; }
  .hero-photo { background-position:43% center; }
  .hero-columns { right:-4vw; top:18%; bottom:14%; width:62vw; opacity:.3; }
  .hero-edition { top:12%; font-size:24vw; }
  .hero-side-note { display:none; }
  .hero-editorial .scroll-hint { display:none; }
  .calendar-hero .page-hero-content { margin-left:24px; }
  .calendar-hero .page-hero-title { font-size:48px; }
  .calendar-hero .page-hero-sub { font-size:18px; max-width:82%; }
  .calendar-hero-mark { display:none; }
  .calendar-intro { align-items:flex-start; flex-direction:column; gap:16px; padding-top:38px; }
  .calendar-page .filter-bar { display:grid; grid-template-columns:1fr 1fr; }
  .calendar-page .filter-bar input { grid-column:span 2; }
  .submission-hero { margin-top:76px; padding:68px 24px 48px; min-height:auto; }
  .submission-hero h1 { font-size:45px; }
  .submission-steps { grid-template-columns:1fr; }
  .submission-steps div { border-right:0; border-bottom:1px solid rgba(255,255,255,.13); }
  .submission-steps div:last-child { border-bottom:0; }
  .submission-steps span { margin-bottom:8px; }
  .submission-layout { padding:56px 24px 90px; }
  .submission-section { padding:24px 18px; }
  .submission-grid,.upload-pair { grid-template-columns:1fr; }
  .submission-field.span2 { grid-column:span 1; }
  .work-previews { grid-template-columns:1fr 1fr; }
  .submission-submit { flex-direction:column; align-items:stretch; }
  .submission-submit .btn-gold { width:100%; }
  .submission-footer { flex-direction:column; }
  .artist-callout { margin:0 24px 56px; padding:32px 24px; align-items:flex-start; flex-direction:column; }
  .hero-dots { right: 24px; bottom: 60px; }
  .about-strip { padding: 56px 24px; grid-template-columns: 1fr; gap: 40px; }
  .featured { padding: 56px 24px; }
  .exh-grid { grid-template-columns: 1fr; }
  .exh-card:first-child { grid-column: span 1; }
  .calendar-strip { padding: 56px 24px; }
  .event-row { grid-template-columns: 72px 1fr; }
  .ev-arrow { display: none; }
  .artists-section { padding: 56px 24px; }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-section { padding: 56px 24px; }
  .blog-grid, .card-grid, .cal-grid, .cal-grid-inner { grid-template-columns: 1fr; }
  .blog-card:first-child { grid-column: span 1; }
  .sponsors-bar { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  footer { padding: 40px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-wrap { padding: 56px 24px; }
  .archive-section { padding: 48px 24px; }
  .contact-section { padding: 48px 24px; gap: 40px; }
  .map-section { padding: 0 24px 48px; }
  .page-hero { height: 220px; }
  .page-hero-title { font-size: 28px; }
  .single-layout { padding: 48px 24px; }
  .page-header { padding: 0 24px; }
  .hero-media { padding: 0 24px; }
  .breadcrumb { padding: 12px 24px; }
  .blog-single-layout { padding: 48px 24px; }
  .filter-bar { flex-direction: column; margin: -72px 0 40px; padding: 14px; }
  .filter-bar input, .filter-bar select { min-width: unset; width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero .page-hero-content { padding: 0 24px; }
}

@media (max-width: 480px) {
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 30px; }
}

/* ══════════════════════════════════════════
   PRODAJNA GALERIJA — Listing stranica
   ══════════════════════════════════════════ */

/* Filter bar proširenje za prodajnu galeriju */
.pg-filter-bar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 32px 80px 0;
}
.pg-filter-bar input, .pg-filter-bar select {
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: var(--text); border: 1px solid var(--border);
  padding: 11px 16px; background: var(--white); outline: none;
  transition: border-color 0.2s;
}
.pg-filter-bar input { flex: 1; min-width: 220px; }
.pg-filter-bar select { min-width: 180px; cursor: pointer; }
.pg-filter-bar input:focus, .pg-filter-bar select:focus { border-color: var(--gold); }
.pg-filter-bar input::placeholder { color: var(--text-light); }

/* Grid kartica umetnika (prodajna) */
.pg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 40px 80px 80px;
}

.pg-card {
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  position: relative; overflow: hidden;
}
.pg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 56px rgba(0,0,0,0.10);
}

/* Portret umetnika — taller aspect */
.pg-card-portrait {
  width: 100%; aspect-ratio: 3/4; overflow: hidden;
  position: relative; background: var(--border);
}
.pg-card-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.5s ease;
}
.pg-card:hover .pg-card-portrait img { transform: scale(1.04); }

/* Placeholder gradient za portret */
.pg-portrait-bg {
  width: 100%; height: 100%;
  transition: transform 0.5s ease;
}
.pg-card:hover .pg-portrait-bg { transform: scale(1.04); }

/* Hover overlay sa "Pogledaj dela" */
.pg-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.08) 50%, transparent 100%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.35s;
}
.pg-card:hover .pg-card-overlay { opacity: 1; }
.pg-card-overlay-label {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-light);
}

/* Broj dela badge (top-right) */
.pg-count-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.92);
  padding: 5px 11px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; color: var(--text-mid);
  backdrop-filter: blur(4px);
}
.pg-count-badge strong { color: var(--gold); }

/* Body ispod portreta */
.pg-card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.pg-card-name {
  font-family: 'Playfair Display', serif; font-size: 20px;
  font-weight: 600; color: var(--dark); margin-bottom: 5px;
  line-height: 1.2;
}
.pg-card-spec {
  font-size: 12px; color: var(--text-light); letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.pg-card-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-light); margin-top: auto;
}
.pg-card-location svg { color: var(--gold); flex-shrink: 0; }
.pg-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); transition: gap 0.2s;
}
.pg-card-cta::after { content: '→'; }
.pg-card:hover .pg-card-cta { gap: 14px; }

/* Kategorija tab/linija */
.pg-card-cat {
  position: absolute; top: 0; left: 0;
  background: var(--gold); color: #fff;
  font-size: 9.5px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 5px 12px;
}

/* ══════════════════════════════════════════
   PRODAJNA GALERIJA — Profil umetnika
   ══════════════════════════════════════════ */

/* Hero profila */
.pg-profile-hero {
  margin-top: 70px;
  display: grid; grid-template-columns: 420px 1fr;
  min-height: 560px; position: relative; overflow: hidden;
}
.pg-profile-portrait {
  position: relative; overflow: hidden; background: var(--border);
}
.pg-profile-portrait img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.pg-portrait-bg-full { width: 100%; height: 100%; min-height: 560px; }
.pg-profile-info {
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 56px 64px;
}
.pg-profile-tag {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 14px; display: block;
}
.pg-profile-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700; color: #fff; line-height: 1.1;
  margin-bottom: 24px;
}
.pg-profile-contacts { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pg-contact-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.5;
}
.pg-contact-row svg { color: var(--gold); flex-shrink: 0; }
.pg-contact-row a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.pg-contact-row a:hover { color: var(--gold-light); }
.pg-contact-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #fff;
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 28px; text-decoration: none; transition: background 0.25s, gap 0.2s;
  align-self: flex-start;
}
.pg-contact-btn:hover { background: var(--gold-light); gap: 16px; }
.pg-contact-btn::after { content: '→'; }

/* Layout biografija + dela */
.pg-profile-layout {
  padding: 80px; display: grid;
  grid-template-columns: 1fr 360px; gap: 64px;
}
.pg-profile-content { min-width: 0; }
.pg-bio-section { margin-bottom: 64px; }
.pg-section-label {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block;
}
.pg-section-title {
  font-family: 'Playfair Display', serif; font-size: 28px;
  font-weight: 600; color: var(--dark); margin-bottom: 28px; line-height: 1.2;
}
.pg-bio-text {
  font-family: 'Cormorant Garamond', serif; font-size: 18px;
  line-height: 1.82; color: var(--text-mid);
}
.pg-bio-text p { margin-bottom: 1.4em; }
.pg-bio-text p:last-child { margin-bottom: 0; }

/* Dela (eksponati) grid */
.pg-dela-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 12px;
}
.pg-delo-card {
  background: var(--white); border: 1px solid var(--border);
  cursor: pointer; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.pg-delo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.09);
}

/* Slika dela */
.pg-delo-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  position: relative; background: var(--border);
}
.pg-delo-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.45s ease;
}
.pg-delo-card:hover .pg-delo-img img { transform: scale(1.05); }
.pg-delo-bg {
  width: 100%; height: 100%;
  transition: transform 0.45s ease;
}
.pg-delo-card:hover .pg-delo-bg { transform: scale(1.05); }

/* Hover overlay sa lupom */
.pg-delo-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.40);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.pg-delo-card:hover .pg-delo-overlay { opacity: 1; }
.pg-delo-overlay-icon {
  width: 48px; height: 48px; border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; transform: scale(0.85); transition: transform 0.3s;
}
.pg-delo-card:hover .pg-delo-overlay-icon { transform: scale(1); }

/* Cena badge na slici */
.pg-price-badge {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.72); color: var(--gold-light);
  font-size: 13px; font-weight: 500; padding: 6px 12px;
  backdrop-filter: blur(4px);
}

/* Info ispod slike */
.pg-delo-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.pg-delo-naziv {
  font-family: 'Playfair Display', serif; font-size: 16px;
  font-weight: 600; color: var(--dark); margin-bottom: 6px; line-height: 1.25;
}
.pg-delo-meta {
  font-size: 11.5px; color: var(--text-light);
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 8px;
}
.pg-delo-meta span { display: flex; align-items: center; gap: 4px; }
.pg-delo-desc {
  font-family: 'Cormorant Garamond', serif; font-size: 15px;
  color: var(--text-mid); line-height: 1.65; margin-top: auto;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* Napomena o kupovini */
.pg-purchase-note {
  background: var(--gold-pale); border: 1px solid #E0C880;
  border-left: 4px solid var(--gold);
  padding: 22px 26px; margin-top: 40px;
  display: flex; gap: 16px; align-items: flex-start;
}
.pg-purchase-note svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.pg-purchase-note-text { font-family: 'Cormorant Garamond', serif; font-size: 16.5px; color: var(--text-mid); line-height: 1.7; }
.pg-purchase-note-text strong { color: var(--dark); font-weight: 500; }

/* Sidebar profila */
.pg-profile-sidebar { min-width: 0; }
.pg-stat-box {
  background: var(--off-white); border: 1px solid var(--border);
  padding: 28px; margin-bottom: 24px;
}
.pg-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pg-stat-item { text-align: center; padding: 16px 8px; border: 1px solid var(--border); background: var(--white); }
.pg-stat-val { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--gold); display: block; }
.pg-stat-lbl { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); display: block; margin-top: 4px; }

/* Lightbox za dela — prošireni prikaz */
.pg-lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(10,8,6,0.95); z-index: 9999;
  align-items: center; justify-content: center;
  padding: 32px;
}
.pg-lightbox.open { display: flex; }
.pg-lightbox-inner {
  background: var(--white); max-width: 960px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1.2fr 1fr;
  position: relative;
}
.pg-lightbox-img-col { background: #0A0806; position: relative; min-height: 400px; }
.pg-lightbox-img-col img {
  width: 100%; height: 100%; object-fit: contain;
  display: block; max-height: 90vh;
}
.pg-lightbox-img-bg { width: 100%; height: 100%; min-height: 400px; }
.pg-lightbox-info-col { padding: 40px 36px; display: flex; flex-direction: column; overflow-y: auto; }
.pg-lightbox-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block;
}
.pg-lightbox-naziv {
  font-family: 'Playfair Display', serif; font-size: 24px;
  font-weight: 600; color: var(--dark); line-height: 1.2; margin-bottom: 20px;
}
.pg-lightbox-row {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 13.5px; color: var(--text-mid); margin-bottom: 13px; line-height: 1.5;
}
.pg-lightbox-row svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.pg-lightbox-row-lbl { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; display: block; }
.pg-lightbox-price {
  font-family: 'Playfair Display', serif; font-size: 28px;
  font-weight: 700; color: var(--gold); margin: 16px 0 8px;
}
.pg-lightbox-price-eur { font-size: 15px; color: var(--text-light); margin-bottom: 24px; }
.pg-lightbox-desc {
  font-family: 'Cormorant Garamond', serif; font-size: 16.5px;
  color: var(--text-mid); line-height: 1.78; margin-bottom: 28px; flex: 1;
}
.pg-lightbox-buy-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold); color: #fff; text-decoration: none;
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 15px 24px; transition: background 0.25s; border: none; cursor: pointer; width: 100%;
}
.pg-lightbox-buy-btn:hover { background: var(--gold-light); }
.pg-lightbox-close {
  position: absolute; top: 14px; right: 18px;
  font-size: 28px; color: rgba(255,255,255,0.7); cursor: pointer;
  background: none; border: none; line-height: 1; z-index: 2;
  transition: color 0.2s;
}
.pg-lightbox-close:hover { color: #fff; }
.pg-lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 28px; color: rgba(255,255,255,0.6); cursor: pointer;
  background: rgba(0,0,0,0.4); border: none; padding: 16px 10px;
  transition: color 0.2s, background 0.2s; z-index: 3;
}
.pg-lightbox-nav:hover { color: #fff; background: rgba(0,0,0,0.7); }
.pg-lightbox-prev { left: 0; }
.pg-lightbox-next { right: 0; }

/* Divider linija u profilu */
.pg-divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* ── RESPONSIVE — prodajna galerija ── */
@media (max-width: 1200px) {
  .pg-grid { grid-template-columns: repeat(2, 1fr); padding: 32px 40px 60px; }
  .pg-filter-bar { padding: 28px 40px 0; }
  .pg-profile-hero { grid-template-columns: 340px 1fr; }
  .pg-profile-layout { padding: 60px 40px; gap: 48px; }
  .pg-lightbox-inner { max-width: 820px; }
}
@media (max-width: 960px) {
  .pg-profile-hero { grid-template-columns: 1fr; }
  .pg-profile-portrait { aspect-ratio: 3/2; min-height: unset; }
  .pg-portrait-bg-full { min-height: 360px; }
  .pg-profile-info { padding: 40px; }
  .pg-profile-layout { grid-template-columns: 1fr; }
  .pg-lightbox-inner { grid-template-columns: 1fr; max-width: 480px; }
  .pg-lightbox-img-col { min-height: 300px; }
  .pg-dela-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pg-grid { grid-template-columns: 1fr; padding: 24px 24px 56px; }
  .pg-filter-bar { padding: 24px 24px 0; flex-direction: column; }
  .pg-filter-bar input, .pg-filter-bar select { width: 100%; }
  .pg-profile-info { padding: 32px 24px; }
  .pg-profile-layout { padding: 48px 24px; gap: 40px; }
  .pg-dela-grid { grid-template-columns: 1fr; }
  .pg-lightbox { padding: 16px; }
  .pg-lightbox-inner { grid-template-columns: 1fr; }
  .pg-lightbox-info-col { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .about-paths-grid { grid-template-columns: 1fr; }
  .about-paths-grid .path-card { border-right: 0; border-bottom: 1px solid var(--border); min-height: 128px; }
  .about-paths-grid .path-card:last-child { border-bottom: 0; }
  .pg-dela-grid { grid-template-columns: 1fr; }
}

/* ── STATS STRIP (count-up) ── */
.stats-strip {
  display:flex; flex-wrap:wrap; justify-content:center;
  background:var(--dark); padding:52px clamp(24px,6vw,80px);
}
.stat-item { flex:1 1 200px; text-align:center; padding:0 32px; position:relative; }
.stat-item + .stat-item::before {
  content:''; position:absolute; left:0; top:6px; bottom:6px; width:1px;
  background:rgba(255,255,255,.14);
}
.stat-number {
  display:block; font-family:'Playfair Display',serif; font-weight:600;
  font-size:clamp(34px,4vw,52px); color:var(--gold-light); line-height:1;
  margin-bottom:12px;
}
.stat-label {
  display:block; font-size:11px; letter-spacing:.14em; text-transform:uppercase;
  color:rgba(255,255,255,.55); line-height:1.5;
}
@media (max-width:640px) {
  .stat-item + .stat-item::before { display:none; }
  .stat-item { flex:1 1 45%; margin-bottom:24px; padding:0 12px; }
}
