:root{
 color-scheme: light only;
 /* Medna paleta */
 --bg:#F8F2E5;
 --surface:#F2E9DA;
 --primary:#C9962C; /* med / CTA */
 --primary-hover:#B8861B;
 --accent:#C9962C;
 --accent-hover:#B8861B;
 --honey-light:#C4A574; /* saće fill: topli braon, ne žarko zlato */
 --honey-hover:#B8955E;
 --honey-active:#8F7040;
 --olive:#5E6B3C; /* priroda */
 --olive-tint:#F4F7F0;
 --text:#2F261A;
 --text-soft:#5C4E3A;
 --border:#E0D4BC;
 --white:#ffffff;
 --footer:#1F1610;
 --map-blue:#2E6B9E; /* samo mapa / GIS */
 --header-h:70px;
 }
 *{box-sizing:border-box;}
 html{
 scroll-behavior:smooth;
 overflow-x:hidden;
 scroll-padding-top:calc(var(--header-h) + 8px);
 color-scheme: light only;
 background-color:#F8F2E5;
 }
 @media (prefers-reduced-motion: reduce){
 html{scroll-behavior:auto;}
 *,*:before,*:after{animation:none !important; transition:none !important;}
 }
 /* Spreči auto dark mode (Chrome Android / Safari) da invertuje paletu */
 @media (prefers-color-scheme: dark){
 :root, html, body{
 color-scheme: light only;
 background-color:#F8F2E5;
 color:#2F261A;
 }
 }
 body{
 margin:0;
 background-color:#F8F2E5;
 background:var(--bg);
 color:#2F261A;
 color:var(--text);
 font-family:'Inter',sans-serif;
 -webkit-font-smoothing:antialiased;
 -moz-osx-font-smoothing:grayscale;
 overflow-x:hidden;
 width:100%;
 forced-color-adjust:none;
 -webkit-text-size-adjust:100%;
 text-size-adjust:100%;
 }
 button, input, select, textarea{
 color-scheme: light;
 }
 img, video{
 max-width:100%;
 display:block;
 }
 a{color:inherit;}
 :selection{background:var(--primary); color:var(--white);}
 :focus-visible{outline:2px solid var(--primary); outline-offset:3px;}

 .wrap{
 max-width:1120px;
 margin:0 auto;
 padding:0 clamp(16px,4vw,28px);
 width:100%;
 }

 /* Media frames: slike ostaju u frejmu */
 .media-frame{
 position:relative;
 overflow:hidden;
 width:100%;
 }
 .media-frame > img,
 .media-frame > video{
 position:absolute;
 inset:0;
 width:100%;
 height:100%;
 object-fit:cover;
 object-position:center;
 }

 .fade-up{
 opacity:0; transform:translateY(18px);
 transition:opacity .7s ease, transform .7s ease;
 }
 .fade-up.in{opacity:1; transform:none;}

 /* ---------- HEADER ---------- */
 #site-header{
 position:fixed; top:0; left:0; right:0; z-index:100;
 background:transparent;
 border-bottom:1px solid transparent;
 transition:background .35s ease, box-shadow .35s ease, border-color .35s ease;
 }
 #site-header.scrolled,
 #site-header.is-open{
 background:#ffffff;
 background:rgba(255,255,255,.96);
 -webkit-backdrop-filter:blur(10px);
 backdrop-filter:blur(10px);
 border-bottom-color:rgba(42,33,24,.08);
 box-shadow:0 8px 28px rgba(42,33,24,.08);
 }

 .navwrap{
 display:flex; align-items:center; justify-content:space-between;
 gap:16px; min-height:var(--header-h);
 max-width:1120px; margin:0 auto; padding:0 clamp(16px,4vw,28px);
 width:100%;
 }

 .logo{
 font-family:'Fraunces',serif;
 font-weight:680;
 font-size:clamp(15px,2vw,20px);
 text-decoration:none;
 color:var(--white);
 letter-spacing:-.01em;
 white-space:nowrap;
 overflow:hidden;
 text-overflow:ellipsis;
 min-width:0;
 max-width:min(52vw,280px);
 transition:color .3s ease;
 }
 .nav-right{display:flex; align-items:center; gap:clamp(12px,2vw,22px); min-width:0; flex:none;}
 .navlinks{display:flex; gap:clamp(12px,1.8vw,26px); align-items:center; font-size:14px; font-weight:500;}
 .navlinks a{
 text-decoration:none; color:rgba(255,255,255,.88);
 position:relative; padding:4px 0;
 white-space:nowrap;
 transition:color .3s ease;
 }
 .navlinks a:after{
 content:''; position:absolute; left:0; bottom:0; height:1px; width:0;
 background:currentColor; transition:width .25s ease;
 }
 .navlinks a:hover{color:var(--white);}
 .navlinks a:hover:after{width:100%;}
 .lang{display:flex; gap:4px; font-size:12px; font-weight:600; flex:none;}
 .lang button{
 background:none; border:1px solid rgba(255,255,255,.35);
 color:rgba(255,255,255,.9); padding:5px 9px; cursor:pointer;
 transition:color .3s ease, border-color .3s ease, background .3s ease;
 }
 .lang button[aria-pressed="true"],
 .lang button.is-active{
 background:var(--white); color:var(--text); border-color:var(--white);
 }
 .burger{
 display:none; background:none; border:none;
 width:40px; height:40px; cursor:pointer; font-size:20px; color:var(--white);
 flex:none;
 transition:color .3s ease;
 }

 #site-header.scrolled .logo,
 #site-header.is-open .logo,
 #site-header.scrolled .navlinks a,
 #site-header.is-open .navlinks a,
 #site-header.scrolled .burger,
 #site-header.is-open .burger{
 color:var(--text);
 }
 #site-header.scrolled .navlinks a:hover,
 #site-header.is-open .navlinks a:hover{color:var(--primary);}
 #site-header.scrolled .lang button,
 #site-header.is-open .lang button{
 color:var(--text-soft);
 border-color:rgba(35,26,16,.15);
 }
 #site-header.scrolled .lang button[aria-pressed="true"],
 #site-header.scrolled .lang button.is-active,
 #site-header.is-open .lang button[aria-pressed="true"],
 #site-header.is-open .lang button.is-active{
 background:var(--text); color:var(--bg); border-color:var(--text);
 }

 .mobile-nav{
 display:none;
 flex-direction:column;
 gap:2px;
 padding:8px clamp(16px,4vw,28px) 20px;
 background:#fff;
 border-top:1px solid rgba(42,33,24,.06);
 max-height:min(70vh,520px);
 overflow:auto;
 -webkit-overflow-scrolling:touch;
 }
 .mobile-nav a{
 text-decoration:none; padding:14px 0; color:var(--text);
 font-size:16px; font-weight:500;
 box-shadow:inset 0 -1px 0 rgba(35,26,16,.06);
 }
 .mobile-nav.open,
 .mobile-nav:not([hidden]){
 display:flex;
 }
 .mobile-nav[hidden]{display:none !important;}
 @media (max-width:960px){
 .navlinks{display:none;}
 .burger{display:grid; place-items:center;}
 .logo{max-width:min(58vw,240px);}
 }
 @media (max-width:420px){
 .logo{max-width:48vw; font-size:14px;}
 }

 /* ---------- BUTTONS ---------- */
 .btn{
 display:inline-flex; align-items:center; gap:8px;
 font-family:inherit; font-weight:600; font-size:15px;
 padding:15px 26px; text-decoration:none; cursor:pointer;
 border:none; background:none;
 transition:background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
 -webkit-appearance:none;
 appearance:none;
 }
 .btn:hover{transform:translateY(-1px);}
 /* Primarno CTA: med / zlatna */
 .btn-accent{
 background-color:#C9962C;
 background:var(--primary);
 color:#2F261A;
 color:var(--text);
 -webkit-text-fill-color:#2F261A;
 padding:16px 28px;
 font-size:15.5px;
 box-shadow:0 4px 0 rgba(47,38,26,.14);
 forced-color-adjust:none;
 }
 .btn-accent:hover,
 .btn-accent:visited,
 .btn-accent:active,
 .btn-accent:focus{
 background-color:#B8861B;
 background:var(--primary-hover);
 color:#2F261A;
 -webkit-text-fill-color:#2F261A;
 opacity:1;
 box-shadow:0 6px 0 rgba(47,38,26,.16);
 }
 .btn-primary{
 background-color:#C9962C;
 background:var(--primary);
 color:#ffffff;
 -webkit-text-fill-color:#ffffff;
 padding:16px 28px;
 font-size:15.5px;
 forced-color-adjust:none;
 }
 .btn-primary:hover,
 .btn-primary:visited{
 background-color:#B8861B;
 background:var(--primary-hover);
 color:#ffffff;
 -webkit-text-fill-color:#ffffff;
 opacity:1;
 }
 /* Sekundarno: providno + zlatni okvir */
 .btn-secondary{
 background:transparent;
 color:#C9962C;
 color:var(--primary);
 -webkit-text-fill-color:#C9962C;
 border:1.5px solid #C9962C;
 border-color:var(--primary);
 padding:14px 26px;
 forced-color-adjust:none;
 }
 .btn-secondary:hover,
 .btn-secondary:visited{
 background:rgba(201,150,44,.1);
 color:#B8861B;
 -webkit-text-fill-color:#B8861B;
 border-color:#B8861B;
 }
 .btn-link{
 padding:15px 4px; color:inherit;
 text-decoration:underline; text-underline-offset:5px;
 text-decoration-thickness:1px;
 }
 .btn-link:hover{opacity:.75;}

 /* ---------- HERO (full-bleed) ---------- */
 .hero{
 position:relative;
 min-height:100svh;
 min-height:100dvh;
 display:flex; flex-direction:column; justify-content:center;
 color:var(--white);
 overflow:hidden;
 width:100%;
 max-width:100%;
 padding-top:var(--header-h);
 box-sizing:border-box;
 }
 @media (max-width:720px){
 .hero{
 min-height:100svh;
 min-height:100dvh;
 padding-top:calc(var(--header-h) + 4px);
 justify-content:flex-end;
 }
 .hero .wrap,
 .hero-inner.wrap{
 padding-left:max(16px, env(safe-area-inset-left, 0px) + 16px);
 padding-right:max(16px, env(safe-area-inset-right, 0px) + 16px);
 width:100%;
 max-width:100%;
 box-sizing:border-box;
 }
 .hero-inner{
 padding-top:clamp(20px,5vw,32px);
 padding-bottom:max(clamp(24px,6vw,44px), env(safe-area-inset-bottom, 0px) + 16px);
 box-sizing:border-box;
 width:100%;
 max-width:100%;
 }
 .hero-brand{
 font-size:clamp(16px,4.2vw,20px);
 margin:0 0 12px;
 max-width:100%;
 }
 .hero h1{
 max-width:100%;
 font-size:clamp(28px,8.2vw,40px);
 padding-left:0;
 overflow-wrap:anywhere;
 word-break:normal;
 hyphens:auto;
 }
 .hero-lead{
 max-width:100%;
 font-size:clamp(14.5px,3.8vw,16px);
 margin:0 0 18px;
 }
 .hero-cta{
 width:100%;
 max-width:100%;
 }
 .hero-bg:after{
 background:
  linear-gradient(180deg, rgba(28,20,10,.35) 0%, rgba(28,20,10,.2) 40%, rgba(28,20,10,.78) 100%),
  linear-gradient(90deg, rgba(28,20,10,.55) 0%, rgba(28,20,10,.25) 100%);
 }
 .hero-bg video{
 object-position:center center;
 }
 }
 .hero-bg{
 position:absolute; inset:0; z-index:0;
 overflow:hidden;
 background:#1C140A url('media/hero-poster.jpg') center / cover no-repeat;
 }
 .hero-bg img,
 .hero-bg video{
 position:absolute; inset:0;
 width:100%; height:100%;
 object-fit:cover;
 object-position:center;
 pointer-events:none;
 }
 .hero-bg video{
 z-index:0;
 }
 .hero-bg:after{
 content:''; position:absolute; inset:0; z-index:1;
 background:
 linear-gradient(90deg, rgba(28,20,10,.72) 0%, rgba(28,20,10,.38) 48%, rgba(28,20,10,.18) 100%),
 linear-gradient(180deg, rgba(28,20,10,.3) 0%, rgba(28,20,10,.12) 45%, rgba(28,20,10,.55) 100%);
 }
 .hero-inner{
 position:relative; z-index:1;
 padding:clamp(28px,5vw,48px) 0 clamp(36px,6vw,72px);
 width:100%;
 text-align:left;
 display:flex;
 flex-direction:column;
 align-items:flex-start;
 }
 .hero-brand{
 font-family:'Fraunces',serif;
 font-weight:680;
 font-size:clamp(18px,2.4vw,22px);
 letter-spacing:-.01em;
 margin:0 0 18px;
 opacity:.95;
 }
 .hero h1{
 font-family:'Fraunces',serif;
 font-weight:500;
 font-style:italic;
 font-size:clamp(32px,6vw,64px);
 line-height:1.08;
 letter-spacing:-.02em;
 margin:0 0 14px;
 max-width:18ch;
 }
 .hero-lead{
 margin:0 0 22px;
 font-size:clamp(15px,1.8vw,18px);
 line-height:1.5;
 max-width:34rem;
 opacity:.9;
 }
 .hero-cta{
 display:flex;
 flex-wrap:wrap;
 justify-content:flex-start;
 gap:8px 20px;
 margin-bottom:0;
 }
 @media (max-width:520px){
 .hero-cta{flex-direction:column; align-items:flex-start; gap:10px;}
 .hero-cta .btn{width:100%; max-width:280px; justify-content:center; text-align:center;}
 .hero-cta .btn-link{width:auto; padding-left:4px; padding-right:4px;}
 }
 .hero-cards{display:none;}
 .hero-card{
 background:rgba(250,248,243,.14);
 backdrop-filter:blur(8px);
 padding:16px 18px;
 transition:background .25s ease;
 }
 .hero-card:hover{background:rgba(250,248,243,.22);}
 .hero-stat{
 display:block;
 font-family:'Fraunces',serif;
 font-weight:680;
 font-size:clamp(36px,5vw,48px);
 line-height:1;
 letter-spacing:-.03em;
 color:var(--accent);
 margin-bottom:6px;
 }
 .hero-stat--text{font-size:clamp(28px,4vw,40px); letter-spacing:.04em;}
 .hero-label{
 display:block;
 font-family:'JetBrains Mono',monospace;
 font-size:11px;
 font-weight:500;
 letter-spacing:.14em;
 text-transform:uppercase;
 margin-bottom:8px;
 opacity:.95;
 }
 .hero-card > span:last-child{font-size:13px; opacity:.88; line-height:1.45;}

 /* Lucide-style line icons */
 .ico{
 width:28px;
 height:28px;
 display:block;
 margin-bottom:12px;
 fill:none;
 stroke:var(--primary);
 stroke-width:1.5;
 stroke-linecap:round;
 stroke-linejoin:round;
 transition:stroke .2s ease;
 }
 .ico--sm{
 width:14px;
 height:14px;
 margin:0;
 flex:none;
 stroke-width:1.75;
 }
 .hero-card .ico{
 stroke:rgba(250,248,243,.92);
 }
 .hero-card:hover .ico,
 .why-card:hover .ico,
 .experience-card:hover .ico{
 stroke:var(--accent);
 }
 .exp-tags .ico{stroke:var(--olive);}
 .exp-card:hover .exp-tags .ico{stroke:var(--accent);}

 /* Honey identity motifs */
 .motif-hex{position:relative; overflow:hidden;}
 .motif-hex > *{position:relative; z-index:1;}
 .motif-hex:before{
 content:'';
 position:absolute; inset:0; z-index:0;
 opacity:.07;
 pointer-events:none;
 background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='64' viewBox='0 0 56 64'%3E%3Cpath fill='none' stroke='%238C5A22' stroke-width='1.1' d='M28 2l24 14v28L28 58 4 44V16z'/%3E%3C/svg%3E");
 background-size:56px 64px;
 }
 .section--surface.motif-hex:before,
 .section--olive.motif-hex:before{opacity:.09;}
 .flight-path{
 display:block;
 width:100%;
 height:40px;
 margin-top:clamp(24px,3.5vw,36px);
 stroke:var(--primary);
 stroke-width:1.35;
 stroke-dasharray:3 7;
 opacity:.38;
 }
 .flight-path--accent{stroke:var(--accent); opacity:.42;}
 .flight-path--tight{margin-top:clamp(16px,2.5vw,24px); height:32px;}

 /* ---------- SECTIONS ---------- */
 .section{padding:clamp(52px,8vw,110px) 0;}
 #mapa.section{overflow:visible;}
 .section-head{margin-bottom:clamp(24px,4vw,44px); max-width:36rem;}
 .section-head--center{margin-left:auto; margin-right:auto; text-align:center;}
 .section-head h2{
 font-family:'Fraunces',serif;
 font-weight:560;
 font-size:clamp(26px,4vw,44px);
 letter-spacing:-.02em;
 margin:0 0 12px;
 line-height:1.15;
 color:#2F261A;
 color:var(--text);
 }
 .section-head p{
 margin:0; font-size:clamp(15px,1.6vw,17px); line-height:1.6; color:var(--text-soft);
 }
 .section--white{background:#ffffff; background:var(--white); color:#2F261A; color:var(--text);}
 .section--surface{background:#F2E9DA; background:var(--surface); color:#2F261A; color:var(--text);}
 .section--olive{background:#F4F7F0; background:var(--olive-tint); color:#2F261A; color:var(--text);}
 .section--map{
 background:#F2E9DA;
 background:var(--surface);
 color:#2F261A;
 color:var(--text);
 overflow:visible;
 }
 .section--map .section-head p,
 .section--white .section-head p,
 .section--olive .section-head p,
 .section--surface .section-head p{color:var(--text-soft);}
 .map-legend--light{color:var(--text-soft);}
 .map-legend--light .dot{border-color:rgba(42,33,24,.25);}

 /* ---------- VIDEO ---------- */
 .video-shell{
 position:relative;
 padding:14px;
 background:
 linear-gradient(135deg, #E5C76B 0%, #C9962C 42%, #B8861B 100%);
 box-shadow:
 0 18px 42px rgba(92,71,46,.16),
 inset 0 1px 0 rgba(255,255,255,.35);
 }
 .video-shell:before{
 content:'';
 position:absolute;
 inset:6px;
 border:1px dashed rgba(250,248,243,.55);
 pointer-events:none;
 z-index:2;
 }
 .video-shell:after{
 content:'';
 position:absolute;
 inset:10px;
 border:1px solid rgba(45,33,23,.22);
 pointer-events:none;
 z-index:2;
 }
 .video-shell-hex{
 position:absolute;
 top:18px; left:18px;
 width:22px; height:24px;
 z-index:3;
 pointer-events:none;
 background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 32'%3E%3Cpath fill='none' stroke='%23FAF8F3' stroke-width='1.6' d='M14 1.5l11.5 6.7v13.6L14 28.5 2.5 21.8V8.2z'/%3E%3C/svg%3E") center/contain no-repeat;
 opacity:.85;
 }
 .video-shell-hex--br{
 top:auto; left:auto;
 right:18px; bottom:18px;
 }
 .video-frame{
 position:relative;
 aspect-ratio:16/9;
 width:100%;
 max-width:100%;
 overflow:hidden;
 background:var(--footer);
 border:2px solid #2D2117;
 z-index:1;
 }
 .video-frame video{
 position:absolute; inset:0;
 width:100%; height:100%;
 object-fit:cover;
 object-position:center;
 }
 @media (max-width:640px){
 .video-shell{padding:10px;}
 .video-shell-hex{width:16px; height:18px; top:12px; left:12px;}
 .video-shell-hex--br{top:auto; left:auto; right:12px; bottom:12px;}
 }

 /* ---------- OVERVIEW ---------- */
 .overview{
 position:relative;
 background:var(--white);
 padding:clamp(28px,4vw,40px) 0;
 border-bottom:1px solid var(--border);
 }
 .overview-grid{
 display:grid;
 grid-template-columns:repeat(4,1fr);
 gap:16px;
 }
 @media (max-width:720px){.overview-grid{grid-template-columns:repeat(2,1fr);}}
 .overview-item{
 text-align:center;
 padding:18px 12px;
 background:var(--bg);
 border-radius:12px;
 border:1px solid rgba(42,33,24,.06);
 box-shadow:0 4px 16px rgba(42,33,24,.04);
 }
 .overview-num{
 display:block;
 font-family:'Fraunces',serif;
 font-size:clamp(28px,3.5vw,36px);
 font-weight:560;
 color:var(--primary);
 line-height:1.1;
 }
 .overview-label{
 font-size:13px;
 color:var(--text-soft);
 font-weight:500;
 }
 .overview-note{
 margin:16px auto 0;
 text-align:center;
 font-size:14px;
 line-height:1.55;
 color:var(--text-soft);
 max-width:40rem;
 }

 /* ---------- MAP APP (Komoot-style) ---------- */
 .map-app-section{
 padding:0;
 background:#F7F4EE;
 }
 .map-app{
 --map-ink:#2A2118;
 --map-line:rgba(42,33,24,.1);
 display:grid;
 grid-template-columns:minmax(300px,340px) minmax(0,1fr);
 height:min(86vh,820px);
 min-height:560px;
 border-top:1px solid var(--border);
 border-bottom:1px solid var(--border);
 background:#fff;
 }
 .map-side{
 background:#FFFcf8;
 border-right:1px solid var(--map-line);
 display:flex;
 flex-direction:column;
 min-height:0;
 }
 .map-side-scroll{
 overflow:auto;
 padding:20px 18px 24px;
 flex:1;
 }
 .map-side-head h2{
 margin:0 0 4px;
 font-family:'Fraunces',serif;
 font-size:22px;
 font-weight:560;
 letter-spacing:-.02em;
 color:var(--map-ink);
 }
 .map-side-head p{
 margin:0 0 12px;
 font-size:13.5px;
 color:var(--text-soft);
 }
 .map-side-stats{
 list-style:none;
 margin:0 0 4px;
 padding:0;
 display:flex;
 flex-wrap:wrap;
 gap:8px;
 }
 .map-side-stats li{
 font-size:12px;
 padding:6px 10px;
 background:rgba(201,150,44,.1);
 border-radius:999px;
 color:var(--map-ink);
 }
 .map-side-stats strong{font-weight:650;}
 .map-trip-facts{
 list-style:none;
 margin:12px 0 0;
 padding:0;
 display:grid;
 grid-template-columns:repeat(5,minmax(0,1fr));
 gap:6px;
 align-items:stretch;
 }
 .map-trip-facts li{
 display:flex;
 flex-direction:column;
 align-items:center;
 justify-content:center;
 gap:3px;
 text-align:center;
 box-sizing:border-box;
 min-height:78px;
 padding:10px 3px 9px;
 background:#fff;
 background:rgba(255,255,255,.92);
 border:1px solid rgba(47,38,26,.08);
 border-radius:10px;
 color:var(--map-ink);
 overflow:hidden;
 }
 .map-trip-facts svg{
 width:18px;
 height:18px;
 flex:none;
 fill:none;
 stroke:var(--primary);
 stroke-width:1.6;
 stroke-linecap:round;
 stroke-linejoin:round;
 }
 .map-trip-facts span{
 display:block;
 font-size:11.5px;
 font-weight:650;
 line-height:1.2;
 max-width:100%;
 }
 .map-trip-facts em{
 display:block;
 width:100%;
 margin:0;
 padding:0;
 font-style:normal;
 font-size:9px;
 letter-spacing:.03em;
 text-transform:uppercase;
 color:var(--text-soft);
 line-height:1.2;
 max-width:100%;
 overflow:hidden;
 text-overflow:ellipsis;
 white-space:nowrap;
 }
 @media (max-width:1100px){
 .map-trip-facts{grid-template-columns:repeat(3,minmax(0,1fr));}
 }
 .map-side-block{
 margin-top:18px;
 padding-top:16px;
 border-top:1px solid var(--map-line);
 }
 .map-panel-label{
 display:block;
 margin:0 0 10px;
 font-size:11px;
 letter-spacing:.08em;
 text-transform:uppercase;
 color:var(--text-soft);
 }
 .ico-sm{
 width:15px; height:15px;
 stroke:currentColor; fill:none;
 stroke-width:2; stroke-linecap:round; stroke-linejoin:round;
 flex:0 0 auto;
 }
 .layer-ico,
 .tour-ico{
 display:inline-flex;
 align-items:center;
 justify-content:center;
 width:28px; height:28px;
 flex:none;
 color:var(--primary);
 border:1px solid rgba(201,150,44,.35);
 border-radius:50%;
 background:rgba(201,150,44,.08);
 }
 .layer-ico svg,
 .tour-ico svg{
 width:14px; height:14px;
 stroke:currentColor; fill:none;
 stroke-width:2; stroke-linecap:round; stroke-linejoin:round;
 }
 .map-layer--locked{
 cursor:default;
 background:rgba(201,150,44,.08);
 border:1px solid rgba(201,150,44,.18);
 }
 .map-layer--locked:hover{background:rgba(201,150,44,.08);}
 .layer-always{
 font-style:normal;
 font-size:10px;
 font-weight:650;
 letter-spacing:.04em;
 text-transform:uppercase;
 color:var(--primary);
 margin-left:auto;
 }
 .map-layer{
 display:flex;
 align-items:center;
 gap:8px;
 margin:0 0 8px;
 padding:7px 8px;
 font-size:13.5px;
 color:var(--map-ink);
 cursor:pointer;
 border-radius:8px;
 user-select:none;
 }
 .map-layer-name{flex:1; min-width:0;}
 .map-layer-count{
 font-family:'JetBrains Mono',monospace;
 font-size:11px;
 color:var(--text-soft);
 opacity:.85;
 flex:0 0 auto;
 }
 .map-layer-actions{
 display:flex;
 gap:8px;
 margin:0 0 10px;
 }
 .map-layers-btn{
 flex:1;
 appearance:none;
 border:1px solid rgba(47,38,26,.12);
 background:#fff;
 color:var(--text);
 font-family:inherit;
 font-size:12px;
 font-weight:600;
 padding:8px 10px;
 cursor:pointer;
 border-radius:8px;
 }
 .map-layers-btn:hover{
 border-color:rgba(201,150,44,.45);
 color:var(--primary-hover);
 }
 .map-layer:hover{background:rgba(42,33,24,.03);}
 .map-layer input{
 appearance:none;
 width:16px; height:16px;
 border:1.5px solid rgba(140,90,34,.4);
 border-radius:4px;
 background:#fff;
 position:relative;
 flex:0 0 auto;
 }
 .map-layer input:checked{
 background:var(--accent);
 border-color:var(--accent);
 }
 .map-layer input:checked:after{
 content:'';
 position:absolute;
 left:4px; top:1px;
 width:5px; height:9px;
 border:solid #fff;
 border-width:0 2px 2px 0;
 transform:rotate(45deg);
 }
 .map-layer .swatch{
 width:9px; height:9px;
 border-radius:50%;
 flex:0 0 auto;
 }
 .map-layer .swatch-line{
 width:12px; height:3px; border-radius:1px;
 background:repeating-linear-gradient(90deg,#B8722E 0 3px, transparent 3px 6px);
 }
 .map-tours{display:flex; flex-direction:column; gap:6px;}
 .map-tour{
 display:flex;
 flex-direction:row;
 align-items:center;
 gap:10px;
 width:100%;
 text-align:left;
 border:1px solid var(--map-line);
 background:#fff;
 border-radius:10px;
 padding:10px 12px;
 cursor:pointer;
 box-shadow:0 2px 8px rgba(42,33,24,.03);
 transition:border-color .15s, box-shadow .15s;
 }
 .map-tour > span:last-child{
 display:flex;
 flex-direction:column;
 gap:2px;
 min-width:0;
 }
 .map-tour strong{font-size:13px; font-weight:650; color:var(--map-ink);}
 .map-tour span{font-size:11.5px; color:var(--text-soft);}
 .map-tour:hover{border-color:rgba(140,90,34,.35);}
 .map-tour.is-on{
 border-color:var(--primary);
 background:rgba(201,150,44,.1);
 box-shadow:0 4px 14px rgba(140,90,34,.08);
 }
 .map-tour.is-on .tour-ico{
 background:rgba(201,150,44,.18);
 border-color:var(--primary);
 }
 .map-basemaps{display:grid; grid-template-columns:1fr 1fr; gap:6px;}
 .map-base{
 appearance:none;
 border:1px solid rgba(140,90,34,.22);
 background:#fff;
 border-radius:8px;
 color:var(--map-ink);
 font:600 11.5px/1.2 Inter,system-ui,sans-serif;
 padding:8px 8px;
 cursor:pointer;
 text-align:center;
 }
 .map-base.is-on{
 background:rgba(201,150,44,.18);
 border-color:var(--primary);
 color:var(--map-ink);
 }

 .map-main{
 position:relative;
 display:grid;
 grid-template-columns:minmax(0,1fr);
 min-width:0;
 min-height:0;
 height:100%;
 }
 .map-main.has-detail{
 grid-template-columns:minmax(0,1fr) minmax(280px,340px);
 }
 .map-frame{
 position:relative;
 min-width:0;
 min-height:0;
 height:100%;
 background:#c8c4bc;
 }
 #map{
 position:absolute;
 inset:0;
 width:100%;
 height:100%;
 min-height:0;
 border:0;
 z-index:1;
 filter:sepia(4%) saturate(90%);
 }
 .loc-card{
 position:relative;
 background:#fff;
 border-left:1px solid var(--map-line);
 overflow:auto;
 box-shadow:-8px 0 28px rgba(42,33,24,.06);
 }
 .loc-card-close{
 position:absolute;
 top:10px; right:10px; z-index:2;
 width:32px; height:32px;
 border:0; border-radius:50%;
 background:rgba(255,255,255,.92);
 font-size:20px;
 cursor:pointer;
 box-shadow:0 2px 8px rgba(0,0,0,.12);
 }
 .loc-card-photo{
 height:180px;
 background:linear-gradient(135deg,#E8DFD0,#D4C4A8);
 overflow:hidden;
 }
 .loc-card-photo img{
 display:block;
 width:100%;
 height:100%;
 object-fit:cover;
 object-position:center;
 }
 .loc-photo-fallback{
 display:block; width:100%; height:100%;
 opacity:.35;
 }
 .loc-card-body{padding:16px 16px 22px;}
 .loc-card-kicker{
 margin:0;
 font-size:11px;
 letter-spacing:.08em;
 text-transform:uppercase;
 color:var(--text-soft);
 }
 .loc-card-body h3{
 margin:4px 0 2px;
 font-family:'Fraunces',serif;
 font-size:20px;
 font-weight:560;
 }
 .loc-card-place{margin:0 0 8px; font-size:13px; color:var(--text-soft);}
 .loc-card-desc{margin:0 0 12px; font-size:13.5px; line-height:1.5; color:var(--map-ink);}
 .loc-card-hours, .loc-card-contact{
 margin:0 0 6px;
 font-size:12.5px;
 color:var(--text-soft);
 }
 .loc-card-actions{
 display:flex;
 flex-wrap:wrap;
 gap:8px;
 margin:14px 0 16px;
 }
 .loc-btn{
 padding:11px 14px !important;
 font-size:13px !important;
 border-radius:8px;
 }
 .loc-btn[hidden],
 #map-detail-link[hidden],
 #loc-call[hidden],
 #loc-more[hidden]{
 display:none !important;
 }
 .btn-ghost{
 border:1px solid rgba(140,90,34,.28);
 background:#fff;
 color:var(--primary);
 text-decoration:none;
 }
 .map-status{display:flex; flex-wrap:wrap; gap:5px; margin-bottom:10px;}
 .status-badge{
 font-size:11px; font-weight:650;
 padding:4px 8px; border-radius:6px;
 background:rgba(201,150,44,.14);
 color:#7a5a18;
 }
 .status-badge--booking,
 .status-badge--open{
 background:rgba(201,150,44,.16);
 color:#6b4e14;
 }
 .map-amenities{margin-bottom:12px;}
 .map-amenities-list{display:flex; flex-direction:column; gap:5px;}
 .amenity-chip{
 display:flex; align-items:center; gap:8px;
 font-size:12.5px; color:var(--map-ink);
 padding:7px 9px; border-radius:8px;
 background:var(--bg);
 border:1px solid var(--map-line);
 }
 .amenity-chip--check{
 background:rgba(201,150,44,.08);
 border-color:rgba(201,150,44,.22);
 }
 .amenity-chip--check .ico-sm{color:var(--primary);}
 .nearby-copy em{
 display:block;
 margin-top:2px;
 }
 .map-nearby-block{border-top:1px solid var(--map-line); padding-top:12px;}
 .map-nearby-empty{margin:0; font-size:13px; color:var(--text-soft);}
 .map-nearby-list{display:flex; flex-direction:column; gap:6px;}
 .nearby-item{
 display:flex; align-items:flex-start; gap:10px;
 width:100%; text-align:left;
 border:1px solid var(--map-line);
 background:#fff; border-radius:10px;
 padding:10px; cursor:pointer;
 box-shadow:0 2px 8px rgba(42,33,24,.03);
 }
 .nearby-item:hover{border-color:rgba(140,90,34,.35);}
 .nearby-dot{width:10px; height:10px; border-radius:50%; margin-top:4px; flex:0 0 auto;}
 .nearby-copy{display:flex; flex-direction:column; gap:2px; min-width:0;}
 .nearby-copy strong{font-size:13px; font-weight:650;}
 .nearby-copy em{font-style:normal; font-size:11.5px; color:var(--text-soft);}
 .poi-icon{background:transparent !important; border:0 !important;}
 .poi-dot{
 display:block; border-radius:50%;
 border:2px solid #F7EFDD;
 box-shadow:0 1px 4px rgba(0,0,0,.35);
 }
 #map .leaflet-container{width:100% !important; height:100% !important;}
 #map.leaflet-container{width:100% !important; height:100% !important;}
 .leaflet-control-zoom{
 border:0 !important; border-radius:10px !important; overflow:hidden;
 box-shadow:0 8px 24px rgba(42,33,24,.14) !important;
 }
 .leaflet-control-zoom a{
 background:#fff !important; color:var(--text) !important;
 width:34px !important; height:34px !important; line-height:34px !important;
 }
 .leaflet-popup-content-wrapper{border-radius:10px !important;}

 .map-side-toggle{display:none;}

 @media (max-width:980px){
 .map-app{
 display:flex;
 flex-direction:column;
 grid-template-columns:1fr;
 height:auto;
 min-height:0;
 }
 /* Kontrole ISPOD mape, uvek vidljive */
 .map-side{
 border-right:0;
 border-bottom:0;
 border-top:1px solid var(--map-line);
 max-height:none;
 flex:none;
 order:2;
 width:100%;
 background:#FFFcf8;
 }
 .map-side-toggle{
 display:flex;
 width:100%;
 appearance:none;
 border:0;
 border-bottom:1px solid var(--map-line);
 background:rgba(201,150,44,.12);
 color:var(--map-ink);
 font:650 13px/1.2 Inter,system-ui,sans-serif;
 padding:14px 16px;
 cursor:pointer;
 justify-content:space-between;
 align-items:center;
 -webkit-tap-highlight-color:transparent;
 position:sticky;
 top:0;
 z-index:5;
 }
 .map-side-toggle::after{
 content:'▾';
 font-size:12px;
 opacity:.7;
 transition:transform .2s ease;
 }
 .map-side.is-expanded .map-side-toggle::after{transform:rotate(180deg);}
 .map-side-scroll{
 display:block;
 max-height:none;
 padding:14px 16px 28px;
 overflow:visible;
 -webkit-overflow-scrolling:touch;
 }
 .map-side:not(.is-expanded) .map-side-scroll{display:none;}
 .map-main{
 order:1;
 flex:none;
 width:100%;
 height:min(62vh,560px);
 min-height:300px;
 display:block;
 position:relative;
 }
 .map-main.has-detail{grid-template-columns:1fr;}
 .map-frame{
 position:absolute;
 inset:0;
 height:auto;
 min-height:0;
 }
 #map{
 position:absolute;
 inset:0;
 height:auto !important;
 min-height:0 !important;
 }
 .loc-card{
 position:absolute;
 left:0; right:0; bottom:0;
 z-index:450;
 max-height:70%;
 border-left:0;
 border-top:1px solid var(--map-line);
 border-radius:16px 16px 0 0;
 box-shadow:0 -12px 40px rgba(42,33,24,.16);
 -webkit-overflow-scrolling:touch;
 }
 .map-trip-facts{
 grid-template-columns:repeat(3,minmax(0,1fr));
 }
 .map-trip-facts li{min-height:64px; padding:8px 2px;}
 .map-tours{grid-template-columns:1fr;}
 }
 @media (max-width:720px){
 .map-main{height:min(58vh,480px); min-height:280px;}
 .map-tour{min-width:0;}
 .map-basemaps{grid-template-columns:1fr 1fr;}
 .loc-card{max-height:75%;}
 .map-trip-facts{grid-template-columns:repeat(2,minmax(0,1fr));}
 .map-side-stats{gap:6px;}
 .map-side-stats li{font-size:11px; padding:5px 8px;}
 }
 @media (max-width:420px){
 .map-side-head h2{font-size:18px;}
 .map-main{height:min(52vh,420px); min-height:260px;}
 .loc-card-photo{height:110px;}
 .map-trip-facts{grid-template-columns:repeat(2,minmax(0,1fr)); gap:6px;}
 .map-trip-facts em{font-size:9.5px;}
 .map-trip-facts span{font-size:12px;}
 }

 /* Leaflet layer control (legacy fallback) */
 .leaflet-control-layers{
 border:1px solid var(--border) !important;
 border-radius:2px !important;
 box-shadow:0 8px 24px rgba(42,33,24,.12) !important;
 background:var(--bg) !important;
 color:var(--text);
 font-family:'Inter',sans-serif;
 font-size:13px;
 padding:4px 2px;
 }
 .leaflet-control-layers-expanded{
 padding:10px 12px 10px 10px;
 min-width:150px;
 }
 .leaflet-control-layers label{
 display:flex;
 align-items:center;
 gap:8px;
 margin:6px 0;
 cursor:pointer;
 font-weight:500;
 }
 .leaflet-control-layers-separator{
 border-top-color:var(--border) !important;
 margin:8px 0;
 }
 .leaflet-control-layers-base label:first-of-type{margin-top:0;}
 .leaflet-bar a{
 color:var(--text) !important;
 border-bottom-color:var(--border) !important;
 }

 /* ---------- SAĆE / HIVE ---------- */
 #sace.motif-hex{overflow:visible;}
 #sace.motif-hex:before{z-index:0;}
 .hive-layout{
 display:grid;
 grid-template-columns:minmax(0,1fr) minmax(220px,280px);
 gap:clamp(20px,3.5vw,40px);
 align-items:start;
 width:100%;
 min-width:0;
 }
 @media (max-width:900px){
 .hive-layout{
 grid-template-columns:minmax(0,1fr);
 gap:18px;
 }
 .hive-info{order:2;}
 .hive-stage{order:1;}
 }
 .hive-stage{
 position:relative;
 min-width:0;
 width:100%;
 max-width:100%;
 overflow:hidden;
 }
 .hive-stage svg{
 width:100%;
 height:auto;
 max-width:100%;
 display:block;
 overflow:hidden;
 }
 .cell{cursor:pointer;}
 /* Mirne tamne ivice dok sekcija nije u fokusu */
 .cell > g > polygon:not(.cell-tint){
 stroke:#2F261A;
 stroke:var(--text);
 stroke-width:1.25;
 stroke-linejoin:miter;
 transition:stroke .55s ease, stroke-width .55s ease, filter .55s ease;
 fill:none;
 }
 .cell.origin > g > polygon:not(.cell-tint){stroke-width:1.7;}
 /* Blagi topli sloj: fotke ostaju vidljive */
 .cell-tint{
 fill:#A8906A;
 fill:var(--honey-light);
 stroke:none;
 opacity:.34;
 mix-blend-mode:normal;
 transition:fill .45s ease, opacity .45s ease;
 pointer-events:none;
 }
 /* Na scroll u sekciju: jači zlatni okvir */
 #sace.is-inview .cell > g > polygon:not(.cell-tint){
 stroke:#C9962C;
 stroke:var(--primary);
 stroke-width:2.15;
 filter:drop-shadow(0 0 1.5px rgba(201,150,44,.35));
 }
 #sace.is-inview .cell.origin > g > polygon:not(.cell-tint){
 stroke-width:2.6;
 stroke:#B8861B;
 stroke:var(--primary-hover);
 }
 #sace.is-inview .cell-tint{
 fill:#C4A574;
 opacity:.42;
 }
 .cell:hover > g > polygon:not(.cell-tint),
 .cell:focus-visible > g > polygon:not(.cell-tint){
 stroke:#F0C85A !important;
 stroke-width:2.5 !important;
 filter:drop-shadow(0 0 3px rgba(201,150,44,.55));
 }
 .cell:hover .cell-tint,
 .cell:focus-visible .cell-tint{
 fill:#B8955E;
 fill:var(--honey-hover);
 opacity:.26;
 }
 .cell:active .cell-tint,
 .cell.origin .cell-tint{
 fill:#8F7040;
 fill:var(--honey-active);
 opacity:.4;
 }
 .cell:active > g > polygon:not(.cell-tint){
 stroke:#B8861B;
 stroke:var(--primary-hover);
 }
 .cell image{
 opacity:.82;
 transition:opacity .35s ease;
 }
 .cell:hover image,
 .cell:focus-visible image{opacity:1;}
 .cell:focus-visible{outline:none;}
 .cell text{
 font-family:'JetBrains Mono',monospace;
 font-size:11px;
 fill:#F8F2E5;
 fill:var(--bg);
 text-anchor:middle;
 dominant-baseline:middle;
 pointer-events:none;
 opacity:.95;
 font-weight:600;
 paint-order:stroke fill;
 stroke:rgba(47,38,26,.45);
 stroke-width:2.5px;
 }
 .hive-info{
 background:#F8F2E5;
 background:var(--bg);
 border:1px solid rgba(201,150,44,.22);
 padding:clamp(18px,3vw,28px);
 min-height:0;
 width:100%;
 max-width:100%;
 box-sizing:border-box;
 display:flex;
 flex-direction:column;
 justify-content:center;
 box-shadow:0 12px 36px rgba(47,38,26,.08);
 }
 .hive-info .code{
 font-family:'JetBrains Mono',monospace;
 font-size:12px;
 color:#C9962C;
 color:var(--primary);
 }
 .hive-info .hive-mark{
 display:inline-flex;
 width:28px;
 height:31px;
 margin:0 0 2px;
 color:#C68A18;
 }
 .hive-info .hive-mark svg{
 width:100%;
 height:100%;
 display:block;
 }
 .hive-info h3{
 font-family:'Fraunces',serif;
 font-weight:560;
 font-size:clamp(18px,2vw,22px);
 margin:8px 0 6px;
 line-height:1.2;
 color:#2F261A;
 color:var(--text);
 }
 .hive-info p{font-size:14px; color:#5C4E3A; color:var(--text-soft); margin:0 0 14px; line-height:1.5;}
 .hive-info .go{
 font-size:14px; font-weight:600;
 text-decoration:underline; text-underline-offset:4px;
 width:fit-content;
 color:#C9962C;
 color:var(--primary);
 display:inline-block;
 }
 .hive-info .go:hover{color:#B8861B; color:var(--primary-hover);}

 /* ---------- EXPERIENCES / LOCATIONS ---------- */
 .exp-grid{
 display:grid;
 grid-template-columns:repeat(3,minmax(0,1fr));
 gap:clamp(20px,3vw,28px) clamp(14px,2vw,22px);
 }
 @media (max-width:900px){.exp-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
 @media (max-width:560px){.exp-grid{grid-template-columns:minmax(0,1fr);}}
 .exp-card{
 display:block; text-decoration:none; color:inherit;
 min-width:0;
 }
 .exp-media{
 position:relative;
 aspect-ratio:3/4;
 width:100%;
 overflow:hidden;
 background:#1a1510;
 margin-bottom:16px;
 border:1.5px solid rgba(198, 138, 24, .55);
 border-radius:14px;
 box-shadow:
  0 1px 2px rgba(40, 28, 12, .05),
  0 8px 24px rgba(40, 28, 12, .1),
  inset 0 0 0 1px rgba(255, 248, 230, .1);
 transition: border-color .3s ease, box-shadow .35s ease, transform .35s ease;
 }
 .exp-media img{
 position:absolute; inset:0;
 width:100%; height:100%;
 object-fit:cover;
 object-position:center;
 transition:transform .5s ease;
 }
 @media (hover:hover){
 .exp-card:hover .exp-media{
  border-color:rgba(198, 138, 24, .95);
  box-shadow:
   0 2px 4px rgba(40, 28, 12, .07),
   0 12px 28px rgba(40, 28, 12, .12),
   0 0 18px rgba(198, 138, 24, .22),
   inset 0 0 0 1px rgba(255, 248, 230, .16);
 }
 .exp-card:hover .exp-media img{transform:scale(1.03);}
 }
 .exp-code{
 position:absolute; top:12px; left:12px; z-index:1;
 font-family:'JetBrains Mono',monospace;
 font-size:11px; font-weight:500; letter-spacing:.04em;
 background:rgba(45,33,23,.88); color:var(--white);
 padding:5px 8px;
 }
 .exp-card h3{
 font-family:'Fraunces',serif;
 font-weight:560; font-size:clamp(19px,2.2vw,23px);
 margin:0 0 6px; line-height:1.2;
 }
 .exp-card .place{font-size:15px; color:var(--text-soft); margin:0 0 12px;}
 .exp-tags{
 list-style:none; padding:0; margin:0 0 14px;
 display:flex; flex-wrap:wrap; gap:8px;
 }
 .exp-tags li{
 font-size:12.5px; color:var(--olive);
 background:rgba(94,107,60,.1);
 padding:5px 10px;
 display:inline-flex; align-items:center; gap:6px;
 }
 .exp-card .more{
 font-size:14px; font-weight:600;
 text-decoration:underline; text-underline-offset:4px;
 }

 /* ---------- GALLERY portfolio + lightbox ---------- */
 .gallery{padding:0 0 clamp(40px,6vw,72px); overflow:hidden; background:var(--white);}
 .gallery-intro{
 padding:clamp(40px,6vw,72px) 0 clamp(24px,3vw,36px);
 }
 .gallery-portfolio{
 display:grid;
 grid-template-columns:repeat(5, minmax(0,1fr));
 gap:14px;
 width:100%;
 max-width:1120px;
 margin:0 auto;
 box-sizing:border-box;
 }
 @media (max-width:900px){
 .gallery-portfolio{grid-template-columns:repeat(3, minmax(0,1fr)); gap:12px;}
 }
 @media (max-width:560px){
 .gallery-portfolio{grid-template-columns:repeat(2, minmax(0,1fr)); gap:10px;}
 }
 .g-port{
 appearance:none;
 border:1.5px solid rgba(198, 138, 24, .55);
 padding:0;
 margin:0;
 display:block;
 width:100%;
 min-width:0;
 position:relative;
 overflow:hidden;
 background:#1a1510;
 cursor:zoom-in;
 aspect-ratio:4/3;
 border-radius:14px;
 box-shadow:
  0 1px 2px rgba(40, 28, 12, .05),
  0 5px 14px rgba(40, 28, 12, .08),
  inset 0 0 0 1px rgba(255, 248, 230, .1);
 text-align:left;
 transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, border-color .3s ease;
 }
 .g-port--wide{grid-column:auto;}
 .g-port img{
 width:100%;
 height:100%;
 object-fit:cover;
 object-position:center;
 display:block;
 transition:transform .5s ease;
 }
 @media (hover:hover){
 .g-port:hover{
  transform:scale(1.02);
  border-color:rgba(198, 138, 24, .9);
  box-shadow:
   0 2px 4px rgba(40, 28, 12, .07),
   0 10px 22px rgba(40, 28, 12, .12),
   0 0 18px rgba(198, 138, 24, .2);
 }
 .g-port:hover img{transform:scale(1.04);}
 }
 .g-port:focus-visible{outline:2px solid #C68A18; outline-offset:3px;}
 .g-port--slot{display:none !important;}
 .g-port--slot span{display:none;}
@media (prefers-reduced-motion:reduce){
 .g-port, .g-port img{transition:none;}
 .g-port:hover, .g-port:hover img{transform:none;}
}

 .lightbox{
 position:fixed; inset:0; z-index:2000;
 background:rgba(20,16,12,.9);
 display:flex; align-items:center; justify-content:center;
 padding:48px 56px 64px;
 }
 .lightbox[hidden]{display:none !important;}
 .lightbox-figure{
 margin:0; max-width:min(1100px,100%); max-height:100%;
 display:flex; flex-direction:column; align-items:center; gap:12px;
 }
 .lightbox-figure img{
 max-width:100%; max-height:calc(100vh - 140px);
 object-fit:contain; display:block;
 box-shadow:0 20px 60px rgba(0,0,0,.35);
 }
 .lightbox-meta{
 color:rgba(255,255,255,.85);
 font-size:13px; font-weight:600;
 letter-spacing:.06em;
 }
 .lightbox-close,
 .lightbox-nav{
 appearance:none; border:0; cursor:pointer;
 position:absolute;
 background:rgba(255,255,255,.1);
 color:#F8F2E5;
 border:1.5px solid rgba(201,150,44,.55);
 width:44px; height:44px;
 border-radius:50%;
 display:grid; place-items:center;
 font-size:28px; line-height:1;
 transition:background .2s ease, border-color .2s ease;
 }
 .lightbox-close:hover,
 .lightbox-nav:hover{
 background:rgba(201,150,44,.22);
 border-color:#E5C76B;
 }
 .lightbox-close{top:16px; right:16px; font-size:32px;}
 .lightbox-prev{left:16px; top:50%; transform:translateY(-50%);}
 .lightbox-next{right:16px; top:50%; transform:translateY(-50%);}
 @media (max-width:640px){
 .lightbox{padding:56px 12px 72px;}
 .lightbox-prev{left:8px;}
 .lightbox-next{right:8px;}
 .lightbox-close{top:10px; right:10px;}
 }

 /* legacy masonry (mikrosite) — orijentacioni grid override u mikrosite.css */
 .gallery-masonry:not(.gallery-masonry--orient){
 columns:3;
 column-gap:10px;
 }
 @media (max-width:800px){.gallery-masonry:not(.gallery-masonry--orient){columns:2;}}
 @media (max-width:480px){.gallery-masonry:not(.gallery-masonry--orient){columns:1;}}
 .gallery-masonry:not(.gallery-masonry--orient) .g{
 break-inside:avoid;
 margin:0 0 10px;
 position:relative;
 overflow:hidden;
 background:var(--olive-tint);
 }
 .gallery-masonry:not(.gallery-masonry--orient) .g img{
 width:100%;
 height:auto;
 max-width:100%;
 display:block;
 transition:transform .6s ease;
 }
 .gallery-masonry:not(.gallery-masonry--orient) .g--tall img{min-height:280px; object-fit:cover; height:320px; width:100%;}
 .gallery-masonry:not(.gallery-masonry--orient) .g--wide img{min-height:180px; object-fit:cover; height:200px; width:100%;}
 .gallery-masonry:not(.gallery-masonry--orient) .g:hover img{transform:scale(1.03);}
 .gallery-masonry .g--slot{
 min-height:160px;
 display:grid; place-items:center;
 border:1.5px dashed rgba(201,150,44,.4);
 background:rgba(201,150,44,.06);
 color:var(--text-soft);
 font-size:12px; font-weight:600;
 letter-spacing:.04em; text-transform:uppercase;
 }

 /* ---------- ABOUT ---------- */
 .about-layout{
 display:grid;
 grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
 gap:clamp(28px,5vw,72px);
 align-items:center;
 }
 @media (max-width:820px){.about-layout{grid-template-columns:minmax(0,1fr);}}
 .about-photo{
 position:relative;
 aspect-ratio:4/5;
 width:100%;
 max-height:min(640px, 70vh);
 overflow:hidden;
 box-shadow:0 20px 50px rgba(92,71,46,.12);
 }
 @media (max-width:820px){
 .about-photo{aspect-ratio:16/10; max-height:none;}
 }
 .about-photo img,
 .about-photo video{
 position:absolute; inset:0;
 width:100%; height:100%;
 object-fit:cover;
 object-position:center;
 background:#1a1510;
 }
 .about-photo video{
 z-index:1;
 }
 .about-copy{min-width:0;}
 .about-copy h2{
 font-family:'Fraunces',serif;
 font-weight:560;
 font-size:clamp(26px,3.5vw,40px);
 margin:0 0 20px; letter-spacing:-.02em;
 }
 .about-quote{
 margin:0 0 22px;
 padding:0 0 0 18px;
 border-left:3px solid #C9962C;
 font-family:'Fraunces',serif;
 font-style:italic;
 font-weight:500;
 font-size:clamp(18px,2.2vw,22px);
 line-height:1.4;
 color:var(--text);
 }
 .about-copy p{
 font-size:clamp(15px,1.5vw,16.5px); line-height:1.7; color:var(--text-soft); margin:0 0 16px;
 }
 .about-tags{display:flex; flex-wrap:wrap; gap:10px; margin-top:20px;}
 .about-tags span{
 font-size:13px; color:var(--olive); font-weight:500;
 }
 .about-tags span:after{content:'·'; margin-left:10px; opacity:.4;}
 .about-tags span:last-child:after{content:'';}

 /* ---------- EXPERIENCES (umesto vesti) ---------- */
 .experience-grid{
 display:grid;
 grid-template-columns:repeat(4,minmax(0,1fr));
 gap:clamp(16px,2.5vw,24px);
 }
 @media (max-width:900px){.experience-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
 @media (max-width:520px){.experience-grid{grid-template-columns:minmax(0,1fr);}}
 .experience-card{
 background:var(--olive-tint);
 padding:clamp(22px,3vw,28px);
 }
 .experience-card .ico{margin-bottom:14px;}
 .experience-card--photo{
 background:var(--white);
 box-shadow:0 12px 36px rgba(42,33,24,.08);
 padding:0;
 overflow:hidden;
 display:flex;
 flex-direction:column;
 }
 .experience-photo{
 aspect-ratio:16/10;
 overflow:hidden;
 background:var(--olive-tint);
 }
 .experience-photo img{
 width:100%; height:100%;
 object-fit:cover;
 transition:transform .5s ease;
 }
 .experience-card--photo:hover .experience-photo img{transform:scale(1.03);}
 .experience-body{padding:clamp(18px,2.5vw,24px);}
 .experience-card h3{
 font-family:'Fraunces',serif; font-weight:560;
 font-size:clamp(18px,2vw,21px); margin:0 0 10px; line-height:1.25;
 }
 .experience-card p{margin:0; font-size:14.5px; line-height:1.6; color:var(--text-soft);}

 /* ---------- WHY VISIT ---------- */
 .why-grid{
 display:grid;
 grid-template-columns:repeat(4,minmax(0,1fr));
 gap:clamp(16px,2.5vw,24px);
 }
 @media (max-width:900px){.why-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
 @media (max-width:520px){.why-grid{grid-template-columns:minmax(0,1fr);}}
 .why-card{
 background:var(--olive-tint);
 padding:clamp(22px,3vw,28px);
 transition:transform .25s ease, box-shadow .25s ease;
 }
 .why-card:hover{
 transform:translateY(-2px);
 box-shadow:0 12px 28px rgba(42,33,24,.08);
 }
 .why-card h3{
 font-family:'Fraunces',serif; font-weight:560;
 font-size:clamp(17px,2vw,20px); margin:0 0 10px; line-height:1.25;
 }
 .why-card p{margin:0; font-size:14.5px; line-height:1.6; color:var(--text-soft);}

 /* ---------- SEZONA / NASLEĐE / AKTUELNOSTI ---------- */
 .season-grid{
 display:grid;
 grid-template-columns:repeat(3,minmax(0,1fr));
 gap:clamp(14px,2vw,22px);
 }
 @media (max-width:800px){.season-grid{grid-template-columns:1fr;}}
 .season-card{
 background:var(--bg);
 padding:clamp(22px,3vw,28px);
 border:1px solid rgba(47,38,26,.06);
 }
 .season-label{
 font-family:'JetBrains Mono',monospace;
 font-size:11px;
 letter-spacing:.08em;
 text-transform:uppercase;
 color:var(--primary);
 display:block;
 margin-bottom:10px;
 }
 .season-card h3{
 font-family:'Fraunces',serif;
 font-weight:560;
 font-size:clamp(18px,2vw,22px);
 margin:0 0 10px;
 color:var(--text);
 }
 .season-card p{
 margin:0;
 font-size:14.5px;
 line-height:1.55;
 color:var(--text-soft);
 }

 .heritage-layout{
 display:grid;
 grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
 gap:clamp(28px,5vw,56px);
 align-items:center;
 }
 @media (max-width:860px){.heritage-layout{grid-template-columns:1fr;}}
 .heritage-copy h2{
 font-family:'Fraunces',serif;
 font-weight:560;
 font-size:clamp(28px,3.5vw,40px);
 margin:0 0 14px;
 }
 .heritage-copy > p{
 margin:0 0 18px;
 font-size:16px;
 line-height:1.65;
 color:var(--text-soft);
 max-width:42ch;
 }
 .heritage-list{
 list-style:none;
 margin:0 0 24px;
 padding:0;
 display:grid;
 gap:10px;
 }
 .heritage-list li{
 position:relative;
 padding-left:18px;
 font-size:15px;
 color:var(--text);
 }
 .heritage-list li:before{
 content:'';
 position:absolute;
 left:0; top:.55em;
 width:7px; height:7px;
 background:var(--primary);
 }
 .heritage-photo{
 aspect-ratio:4/5;
 overflow:hidden;
 max-height:min(520px,70vh);
 box-shadow:0 18px 44px rgba(47,38,26,.12);
 }
 @media (max-width:860px){.heritage-photo{aspect-ratio:16/10; max-height:none;}}
 .heritage-photo img{
 width:100%; height:100%;
 object-fit:cover;
 object-position:center 40%;
 display:block;
 }

 .news-grid{
 display:grid;
 grid-template-columns:repeat(4,minmax(0,1fr));
 gap:clamp(12px,2vw,18px);
 }
 @media (max-width:1000px){.news-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
 @media (max-width:520px){.news-grid{grid-template-columns:1fr;}}
 .news-card{
 background:var(--white);
 padding:clamp(20px,2.5vw,26px);
 border:1px solid rgba(47,38,26,.06);
 box-shadow:0 8px 24px rgba(47,38,26,.04);
 }
 .news-date{
 font-family:'JetBrains Mono',monospace;
 font-size:11px;
 color:var(--primary);
 display:block;
 margin-bottom:10px;
 }
 .news-card h3{
 font-family:'Fraunces',serif;
 font-weight:560;
 font-size:clamp(17px,1.8vw,20px);
 margin:0 0 10px;
 line-height:1.25;
 color:var(--text);
 }
 .news-card p{
 margin:0;
 font-size:14px;
 line-height:1.55;
 color:var(--text-soft);
 }

 /* ---------- PARTNERS (uklonjeni placeholderi) ---------- */
 .partner-logos,.partner-card,.partner-card-mark{display:none;}
 .partner-logo,
 .funder-slot{
 min-width:130px;
 padding:14px 18px;
 text-align:center;
 line-height:1.4;
 font-family:'JetBrains Mono',monospace;
 font-size:10.5px;
 color:var(--text-soft);
 border:1px dashed var(--border);
 background:transparent;
 }

 /* ---------- FOOTER ---------- */
 footer{
 background:#1F1610;
 background:var(--footer);
 color:#FAF8F3;
 color:var(--white);
 padding:clamp(48px,6vw,64px) 0 28px;
 color-scheme: light only;
 forced-color-adjust:none;
 -webkit-text-size-adjust:100%;
 }
 .foot-grid{
 display:grid;
 grid-template-columns:minmax(0,1.3fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1.15fr);
 gap:clamp(28px,4vw,40px);
 }
 @media (max-width:900px){.foot-grid{grid-template-columns:minmax(0,1fr) minmax(0,1fr);}}
 @media (max-width:560px){.foot-grid{grid-template-columns:minmax(0,1fr);}}
 footer .flogo{
 font-family:'Fraunces',serif; font-weight:680;
 font-size:22px; margin:0 0 12px;
 color:#FAF8F3;
 }
 footer p{color:rgba(250,248,243,.7); font-size:14.5px; line-height:1.6; max-width:36ch; margin:0;}
 footer h4{
 font-size:11px; font-weight:600; letter-spacing:.1em;
 text-transform:uppercase; margin:0 0 14px;
 font-family:'JetBrains Mono',monospace;
 color:#C9962C !important; /* eksplicitno zlato: spreči auto dark → plavo */
 }
 footer ul{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px;}
 footer a{color:rgba(250,248,243,.9); text-decoration:none; font-size:14.5px;}
 footer a:hover{color:#C9962C !important; text-decoration:none;}
 footer .foot-legal a:hover{color:#C9962C !important;}
 .news-date,
 .season-label,
 .hive-info .code{
 color:#C9962C !important;
 }
 footer .social-row,
 .social-row{display:flex; gap:12px; margin-top:16px;}
 footer .social-row a,
 .social-row a{
 display:inline-flex; align-items:center; justify-content:center;
 width:38px; height:38px;
 border:1.5px solid #C9962C !important;
 border-radius:50%;
 color:#C9962C !important;
 background:transparent !important;
 text-decoration:none !important;
 font-size:0;
 transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
 }
 footer .social-row a:hover,
 .social-row a:hover{
 border-color:#E5C76B !important;
 color:#E5C76B !important;
 background:rgba(201,150,44,.12) !important;
 transform:translateY(-1px);
 }
 footer .social-row a svg,
 .social-row a svg{
 width:16px; height:16px;
 stroke:currentColor;
 fill:none;
 stroke-width:1.5;
 stroke-linecap:round;
 stroke-linejoin:round;
 }
 footer .social-row a .social-yt-play,
 .social-row a .social-yt-play{fill:currentColor; stroke:none;}
 footer .social-row a.social-text,
 .social-row a.social-text{
 font-size:10px !important;
 font-weight:600;
 letter-spacing:.02em;
 width:auto;
 min-width:38px;
 height:38px;
 padding:0 12px;
 border-radius:999px;
 }
 footer .social-row a.social-text span,
 .social-row a.social-text span{
 font-family:'Inter',sans-serif;
 line-height:1;
 }
 .funders-row{
 display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-top:14px;
 }
 footer .funder-slot{
 border-color:rgba(250,248,243,.35);
 color:rgba(250,248,243,.55);
 background:transparent;
 }
 .foot-funding-text{
 max-width:none !important;
 font-size:12.5px !important;
 color:rgba(250,248,243,.55) !important;
 margin:0 0 4px !important;
 }
 .foot-bottom{
 margin-top:48px; padding-top:22px;
 border-top:1px solid rgba(250,248,243,.14);
 display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
 font-family:'JetBrains Mono',monospace;
 font-size:11px; color:rgba(250,248,243,.45);
 }
 .foot-legal{display:flex; flex-wrap:wrap; gap:8px 18px;}
 .foot-legal a{
 color:rgba(250,248,243,.55);
 text-decoration:none;
 font-size:11px;
 }
 .foot-legal a:hover{color:var(--accent);}

/* ---------- MAP POPUPS ---------- */
.leaflet-popup-content-wrapper{
 border-radius: 2px;
 background: var(--bg);
 color: var(--text);
 box-shadow: 0 12px 32px rgba(42,33,24,.22);
 border: none;
 font-family: 'Inter', sans-serif;
}
.leaflet-popup-tip{ background: var(--bg); }
.popup-code{
 font-family: 'JetBrains Mono', monospace;
 font-size: 11px;
 color: var(--primary);
}
.popup-name{
 font-family: 'Fraunces', serif;
 font-weight: 560;
 font-size: 16px;
 margin: 4px 0 2px;
}
.popup-place{
 font-size: 12.5px;
 color: var(--text-soft);
 margin: 0 0 8px;
}
.popup-link{
 font-size: 12px;
 font-weight: 600;
 color: var(--text);
 text-decoration: none;
 border-bottom: 1px solid currentColor;
}

/* ---------- MOBILE polish ---------- */
@media (max-width:720px){
 .section{padding-top:clamp(36px,8vw,56px); padding-bottom:clamp(36px,8vw,56px);}
 .section-head p{font-size:15px;}
 .hero-cta .btn{width:100%; max-width:320px; justify-content:center; text-align:center;}

 /* Header: veći tap, manje gužve */
 .navwrap{gap:10px; padding-left:max(16px, env(safe-area-inset-left)); padding-right:max(16px, env(safe-area-inset-right));}
 .logo{max-width:min(46vw,200px); font-size:15px;}
 .nav-right{gap:8px;}
 .lang{gap:6px;}
 .lang button{
  min-width:44px; min-height:44px;
  padding:0 12px;
  font-size:13px;
  border-radius:8px;
 }
 .burger{width:44px; height:44px;}

 .overview-grid{grid-template-columns:1fr 1fr; gap:10px;}
 .overview-item{padding:14px 10px;}

 /* Mapa: čitljivije + veći tap */
 .map-layer{
  min-height:44px;
  padding:10px 12px;
  gap:10px;
  margin-bottom:6px;
 }
 .map-layer input{
  width:20px; height:20px;
  flex:none;
 }
 .map-layer-name{font-size:14px;}
 .map-layers-btn{
  min-height:40px;
  padding:10px 12px;
  font-size:13px;
 }
 .map-tour{
  padding:12px 14px;
  min-height:52px;
 }
 .map-base{
  min-height:44px;
  padding:12px 10px;
  font-size:13px;
 }
 .map-trip-facts li{min-height:72px; padding:10px 4px;}
 .map-trip-facts span{font-size:12.5px;}
 .map-trip-facts em{font-size:10px;}
 .map-trip-facts svg{width:20px; height:20px;}
 .loc-card-close{
  width:44px; height:44px;
  font-size:24px;
  top:8px; right:8px;
 }
 .loc-card-actions{flex-direction:column;}
 .loc-card-actions .loc-btn{
  width:100%;
  min-height:44px;
  text-align:center;
  justify-content:center;
 }
 .leaflet-control-zoom a{
  width:40px !important;
  height:40px !important;
  line-height:40px !important;
  font-size:18px !important;
 }
 .leaflet-control-zoom{margin-right:10px !important; margin-bottom:10px !important;}

 /* Gridovi: 1 kolona ranije */
 .exp-grid,
 .experience-grid,
 .why-grid,
 .news-grid{grid-template-columns:1fr !important; gap:18px;}
 .gallery-portfolio{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}

 /* Saće */
 .hive-info{padding:16px 14px;}
 .hive-info h3{font-size:clamp(17px,4.5vw,20px); margin:6px 0 6px;}
 .hive-info p{font-size:13.5px; margin:0 0 10px;}
 .hive-info .go{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 16px;
  margin-top:4px;
  border:1.5px solid var(--primary);
  border-radius:999px;
  text-decoration:none;
  background:rgba(201,150,44,.12);
 }
 .hive-stage svg{aspect-ratio:auto; min-height:220px;}
 .hive-mobile-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:16px;
  width:100%;
  min-width:0;
 }
 .hive-mobile-chip{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:12px 12px;
  min-height:52px;
  min-width:0;
  text-decoration:none;
  color:inherit;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(201,150,44,.28);
  border-radius:10px;
 }
 .hive-mobile-chip strong{
  font-size:13.5px;
  font-weight:650;
  overflow-wrap:anywhere;
 }
 .hive-mobile-chip span{
  font-size:11.5px;
  color:var(--text-soft);
 }
 .cell{touch-action:manipulation;}
 .cell text{font-size:10px;}
}
@media (max-width:480px){
 .btn{padding:12px 16px; font-size:14px;}
 .overview-grid{grid-template-columns:1fr; gap:8px;}
 .overview-num{font-size:clamp(24px,8vw,32px);}
 .hive-mobile-list{grid-template-columns:1fr;}
 .map-trip-facts em{font-size:9.5px;}
 .map-trip-facts span{font-size:12px;}
 .logo{max-width:42vw; font-size:14px;}
}

@media (min-width:721px){
 .hive-mobile-list{display:none !important;}
}
