:root {
  --wood-darkest: #241510;
  --wood-dark: #3d2817;
  --wood-mid: #5c3a1f;
  --wood-warm: #8b5a2b;
  --wood-light: #c19a6b;
  --wood-cream: #e8dcc4;
  --paper: #f6f0e5;
  --paper-warm: #ebe2cf;
  --ink: #1a1108;
  --gold-soft: #d4a93a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-weight: 300; color: var(--ink); background: var(--paper); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; letter-spacing: -.01em; line-height: 1.15; }
.eyebrow { font-family: 'Inter', sans-serif; font-size: .72rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--wood-warm); display: inline-flex; align-items: center; gap: .8rem; }
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--wood-warm); }

/* NAVBAR */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.6rem 3rem; display: flex; align-items: center; justify-content: space-between;
  transition: all .4s ease;
  background: var(--paper); /* Navbar nije providan, vec ima krem boju */
  border-bottom: 1px solid rgba(139,90,43,.1);
}
.nav.scrolled { padding: 1.1rem 3rem; box-shadow: 0 4px 30px rgba(36,21,16,.04); }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand-mark { width: 38px; height: 38px; border: 1px solid var(--wood-mid); display: grid; place-items: center; position: relative; }
.brand-mark::after { content: ""; position: absolute; inset: 3px; border: 1px solid var(--wood-mid); opacity: .4; }
.brand-mark svg { width: 18px; height: 18px; color: var(--wood-mid); position: relative; z-index: 1; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 500; }
.brand-text .sub { font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: var(--wood-warm); margin-top: 3px; }
.nav-menu { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-menu a { text-decoration: none; color: var(--ink); font-size: .75rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; position: relative; padding: .5rem 0; transition: color .3s; background: none; border: none; cursor: pointer; font-family: inherit; }
.nav-menu a::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 1px; background: var(--wood-warm); transition: width .35s cubic-bezier(0.4, 0, 0.2, 1); }
.nav-menu a:hover { color: var(--wood-warm); }
.nav-menu a:hover::after { width: 100%; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; }
.menu-toggle span { width: 100%; height: 1px; background: var(--ink); transition: all .3s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* HERO - ASIMETRICNI DIZAJN SA SLIDEROM */
.hero { min-height: 100vh; position: relative; overflow: hidden; background: var(--wood-darkest); }
/* --- POPRAVKA ZA SLAJDER (Nema smeđe pozadine između slika) --- */
.hero-slider { position: absolute; top: 0; right: 0; width: 100%; height: 100%; z-index: 1; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out, transform 6s ease-in-out; transform: scale(1.05); z-index: 0; }
.slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,17,8,0.5) 0%, rgba(26,17,8,0.1) 100%); }
.slide.previous { opacity: 1; transform: scale(1); z-index: 1; }
.slide.active { opacity: 1; transform: scale(1); z-index: 2; }


.hero-box {
  position: absolute; 
  top: 0; left: 0; bottom: 0; /* Zalepljen skroz levo uz ivicu ekrana */
  z-index: 2; width: 55%; height: 100vh; background: var(--paper); /* Krem boja kao navbar */
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  display: flex; align-items: center; padding: 6rem 8rem 2rem 3rem;
}
.hero-content { max-width: 500px; position: relative; z-index: 3; }
.hero h1 { font-size: clamp(3.5rem, 8vw, 6.5rem); font-weight: 300; margin: 1.5rem 0 1.5rem; letter-spacing: -0.02em; line-height: 1.05; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--wood-warm); }
.hero-lead { font-size: 1.08rem; color: var(--wood-dark); margin-bottom: 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }

.btn { display: inline-flex; align-items: center; gap: .7rem; padding: 1rem 2rem; font-size: .76rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; transition: all .35s ease; cursor: pointer; border: none; font-family: 'Inter', sans-serif; }
.btn-primary { background: var(--wood-darkest); color: var(--paper); border: 1px solid var(--wood-darkest); }
.btn-primary:hover { background: var(--wood-warm); border-color: var(--wood-warm); transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(139,90,43,.5); }
.btn-ghost { background: transparent; color: var(--ink); border-bottom: 1px solid var(--ink); padding: .8rem 0; }
.btn-ghost:hover { color: var(--wood-warm); border-color: var(--wood-warm); gap: 1.2rem; }
.btn svg { width: 14px; height: 14px; transition: transform .3s; }
.btn:hover svg { transform: translateX(4px); }

.scroll-cue { position: absolute; bottom: 2rem; left: 3rem; display: flex; align-items: center; gap: 1rem; font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--wood-warm); z-index: 3; }
.scroll-cue::after { content: ""; width: 60px; height: 1px; background: var(--wood-warm); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%, 100% { transform: scaleX(1); opacity: 1; } 50% { transform: scaleX(.4); opacity: .4; } }

/* SECTIONS */
section { padding: 7rem 3rem; position: relative; z-index: 2; }
.section-head { max-width: 720px; margin-bottom: 4rem; }
.section-head h2 { font-size: clamp(2.4rem, 4.5vw, 4rem); margin-top: 1.2rem; font-weight: 300; }
.section-head h2 em { font-style: italic; color: var(--wood-warm); }
.section-head p { font-size: 1.05rem; color: var(--wood-dark); margin-top: 1.2rem; max-width: 580px; }

/* --- SMANJENJE TIMA --- */
.team-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 2.5rem; 
  margin: 3rem auto 0; 
  max-width: 700px; /* Ograničava širinu da kartice ne budu ogromne */
}

/* AKTUELLES / KARRIERE */
.aktuelles { 
  background: var(--paper-warm); /* Svetla pozadina umesto tamne */
  color: var(--ink); 
  padding: 7rem 3rem; 
  text-align: center; 
  position: relative; 
  border-top: 1px solid rgba(139,90,43,.15);
}
.aktuelles-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.aktuelles .eyebrow { color: var(--wood-warm); }
.aktuelles .eyebrow::before { background: var(--wood-warm); }
.aktuelles h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin: 1.5rem 0; color: var(--wood-darkest); }
.aktuelles h2 em { color: var(--wood-warm); font-style: italic; }
.aktuelles p { font-size: 1.1rem; color: var(--wood-dark); line-height: 1.7; margin-bottom: 2.5rem; }
.aktuelles-actions { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.aktuelles-actions .btn-primary { background: var(--wood-darkest); border-color: var(--wood-darkest); color: var(--paper); }
.aktuelles-actions .btn-primary:hover { background: var(--wood-warm); border-color: var(--wood-warm); box-shadow: 0 8px 20px rgba(139,90,43,.25); }
.aktuelles-actions .btn-ghost { color: var(--ink); border-color: var(--ink); }
.aktuelles-actions .btn-ghost:hover { color: var(--wood-warm); border-color: var(--wood-warm); gap: 1.2rem; }

/* SERVICES, GALLERY, TEAM, PROCESS, CONTACT */
.services { background: var(--paper-warm); }
.services::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--wood-warm) 50%, transparent); opacity: .3; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: rgba(139,90,43,.18); margin-top: 3rem; border: 1px solid rgba(139,90,43,.18); }
.service { background: var(--paper); padding: 2.5rem 2rem; position: relative; transition: background .4s; }
.service:hover { background: var(--paper-warm); }
.service-icon { width: 54px; height: 54px; border: 1px solid var(--wood-warm); display: grid; place-items: center; margin-bottom: 1.5rem; transition: all .4s; }
.service:hover .service-icon { background: var(--wood-warm); }
.service:hover .service-icon svg { color: var(--paper); }
.service-icon svg { width: 24px; height: 24px; color: var(--wood-mid); transition: color .4s; }
.service h3 { font-size: 1.5rem; margin-bottom: .7rem; font-weight: 500; }
.service p { font-size: .92rem; color: var(--wood-dark); line-height: 1.7; }
.service-num { position: absolute; top: 1.5rem; right: 1.5rem; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: var(--wood-warm); opacity: .5; }

.gallery { padding-bottom: 8rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 140px; gap: 1.2rem; margin-top: 3rem; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; background: var(--wood-mid); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .5s; filter: saturate(.9); }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.05); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(36,21,16,.7) 100%); opacity: 0; transition: opacity .4s; }
.gallery-item:hover::after { opacity: 1; }
.gallery-caption { position: absolute; bottom: 1.2rem; left: 1.4rem; right: 1.4rem; color: var(--paper); z-index: 2; opacity: 0; transform: translateY(10px); transition: all .4s; }
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-caption .label { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: .3rem; display: block; }
.gallery-caption .title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; }
.gi-1 { grid-column: span 6; grid-row: span 3; }
.gi-2 { grid-column: span 6; grid-row: span 2; }
.gi-3 { grid-column: span 3; grid-row: span 2; }
.gi-4 { grid-column: span 3; grid-row: span 2; }
.gi-5 { grid-column: span 4; grid-row: span 3; }
.gi-6 { grid-column: span 4; grid-row: span 3; }
.gi-7 { grid-column: span 4; grid-row: span 3; }

.team { background: var(--paper-warm); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 2.5rem; margin-top: 3rem; }
.team-card { position: relative; }
.team-photo { aspect-ratio: 3/4; position: relative; overflow: hidden; margin-bottom: 1.5rem; background: linear-gradient(180deg, var(--wood-light) 0%, var(--wood-warm) 60%, var(--wood-dark) 100%); }
.team-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: sepia(.15) saturate(.9) brightness(.95); transition: transform .6s, filter .6s; }
.team-card:hover .team-photo img { transform: scale(1.04); filter: sepia(.05) saturate(1) brightness(1); }
.team-photo::after { content: ""; position: absolute; inset: 1rem; border: 1px solid rgba(232,220,196,.4); pointer-events: none; transition: inset .4s; z-index: 2; }
.team-card:hover .team-photo::after { inset: .6rem; }
.team-photo .initial { position: absolute; top: 1.5rem; left: 1.5rem; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.6rem; color: var(--paper); opacity: .85; z-index: 3; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.team-meta { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.team-card h3 { font-size: 1.7rem; font-weight: 500; margin-bottom: .2rem; }
.team-card .role { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--wood-warm); }
.team-card p { font-size: .92rem; color: var(--wood-dark); margin-top: .9rem; line-height: 1.65; }

.process { background: var(--wood-darkest); color: var(--paper); position: relative; overflow: hidden; }
.process::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(92deg, rgba(255,255,255,.015) 0, rgba(255,255,255,.015) 1px, transparent 1px, transparent 4px), radial-gradient(ellipse at 80% 0%, rgba(184,134,11,.15) 0%, transparent 50%), radial-gradient(ellipse at 0% 100%, rgba(139,90,43,.2) 0%, transparent 50%); pointer-events: none; }
.process .eyebrow { color: var(--gold-soft); }
.process .eyebrow::before { background: var(--gold-soft); }
.process .section-head h2 em { color: var(--gold-soft); }
.process .section-head p { color: var(--wood-cream); }
.process-steps { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 1rem; }
.step { position: relative; padding: 2.2rem 1.6rem; border: 1px solid rgba(232,220,196,.15); transition: all .4s; background: rgba(0,0,0,.1); }
.step:hover { background: rgba(212,169,58,.05); border-color: rgba(212,169,58,.3); transform: translateY(-4px); }
.step-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 2.5rem; font-weight: 300; color: var(--gold-soft); line-height: 1; margin-bottom: 1rem; display: block; }
.step h3 { font-size: 1.3rem; font-weight: 500; color: var(--paper); margin-bottom: .6rem; }
.step p { font-size: .9rem; color: var(--wood-cream); line-height: 1.6; opacity: .8; }

.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3rem; }
.contact-info > div { padding: 1.8rem 0; border-bottom: 1px solid rgba(139,90,43,.18); display: grid; grid-template-columns: 48px 1fr; gap: 1.5rem; align-items: start; }
.contact-info > div:last-child { border-bottom: none; }
.contact-icon { width: 42px; height: 42px; border: 1px solid var(--wood-mid); display: grid; place-items: center; margin-top: .2rem; }
.contact-icon svg { width: 18px; height: 18px; color: var(--wood-mid); }
.contact-info .label { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--wood-warm); margin-bottom: .4rem; display: block; }
.contact-info .value { font-size: 1.05rem; color: var(--ink); line-height: 1.5; }
.contact-info a { color: var(--ink); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .3s; }
.contact-info a:hover { border-color: var(--wood-warm); }
.contact-form { background: var(--paper-warm); padding: 3rem; position: relative; border: 1px solid rgba(139,90,43,.18); }
.contact-form::before { content: ""; position: absolute; top: -1px; left: -1px; right: -1px; height: 3px; background: linear-gradient(90deg, var(--wood-warm), var(--gold-soft), var(--wood-warm)); }
.contact-form h3 { font-size: 1.6rem; margin-bottom: .5rem; font-weight: 500; }
.form-intro { font-size: .92rem; color: var(--wood-dark); margin-bottom: 2rem; line-height: 1.6; }
.form-row { margin-bottom: 1.6rem; }
.form-row label { display: block; font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--wood-warm); margin-bottom: .6rem; }
.form-row input, .form-row textarea { width: 100%; padding: .9rem 0; background: transparent; border: none; border-bottom: 1px solid rgba(139,90,43,.3); font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--ink); transition: border-color .3s; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-bottom-color: var(--wood-warm); }
.form-row textarea { resize: vertical; min-height: 120px; padding: .9rem 0; }
.form-submit { width: 100%; justify-content: center; margin-top: .8rem; }

/* FOOTER */
footer { background: var(--wood-darkest); color: var(--wood-cream); position: relative; z-index: 2; overflow: hidden; }
footer::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(ellipse at 20% 0%, rgba(184,134,11,.12) 0%, transparent 50%), radial-gradient(ellipse at 80% 100%, rgba(139,90,43,.15) 0%, transparent 50%); pointer-events: none; }
.footer-top { padding: 4rem 3rem 2rem; position: relative; z-index: 1; }

/* Grid je sada podeljen na 4 kolone */
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 3rem; margin-bottom: 2rem; }

.footer-brand h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: var(--paper); margin-bottom: 1rem; display: flex; align-items: center; gap: .7rem; }
.footer-brand h3 svg { width: 30px; height: 30px; color: var(--gold-soft); flex-shrink: 0; }
.footer-brand p { font-size: .95rem; line-height: 1.7; opacity: .75; max-width: 380px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { width: 40px; height: 40px; border: 1px solid rgba(232,220,196,.25); display: grid; place-items: center; color: var(--wood-cream); transition: all .3s; text-decoration: none; opacity: .85; background: none; padding: 0; border-radius: 4px; }
.footer-socials a:hover { background: var(--gold-soft); border-color: var(--gold-soft); color: var(--wood-darkest); opacity: 1; transform: translateY(-3px); }
.footer-socials svg { width: 18px; height: 18px; }

.footer-col h4 { font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.2rem; font-family: 'Inter', sans-serif; font-weight: 500; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-col a, .footer-col li { color: var(--wood-cream); text-decoration: none; font-size: .9rem; opacity: .75; transition: all .3s; display: inline-flex; align-items: flex-start; gap: .8rem; text-align: left; line-height: 1.5; }
.footer-col a:hover { opacity: 1; color: var(--gold-soft); }
.footer-col svg.contact-mini { width: 16px; height: 16px; color: var(--gold-soft); flex-shrink: 0; margin-top: 2px; opacity: .8; }

.footer-col ul.opening-hours { max-width: 300px; }
.footer-col ul.opening-hours li { display: flex; justify-content: space-between; width: 100%; border-bottom: 1px solid rgba(232,220,196,0.1); padding-bottom: 0.4rem; margin-bottom: 0.4rem; }
.footer-col ul.opening-hours li:last-child { border-bottom: none; }
.footer-col ul.opening-hours li span:first-child { font-weight: 500; }
.footer-col ul.opening-hours li span:last-child { color: var(--gold-soft); }

.footer-bottom { padding: 1.5rem 3rem; border-top: 1px solid rgba(232,220,196,.12); display: flex; justify-content: space-between; align-items: center; font-size: .8rem; opacity: .7; flex-wrap: wrap; gap: 1rem; background: rgba(0,0,0,.15); position: relative; z-index: 1; }
.footer-bottom a { color: inherit; text-decoration: none; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold-soft); }

/* MODAL (Impressum/Datenschutz) */
.modal-overlay { position: fixed; inset: 0; background: rgba(26,17,8,.75); backdrop-filter: blur(8px); z-index: 200; display: none; align-items: center; justify-content: center; padding: 2rem; opacity: 0; transition: opacity .3s; }
.modal-overlay.active { display: flex; opacity: 1; }
.modal { background: var(--paper); max-width: 800px; width: 100%; margin: auto; padding: 4rem; position: relative; border-radius: 8px; box-shadow: 0 30px 90px rgba(0,0,0,.4); transform: translateY(20px); transition: transform .4s cubic-bezier(.2,.8,.2,1); max-height: 90vh; overflow-y: auto; }
.modal::-webkit-scrollbar { width: 6px; }
.modal::-webkit-scrollbar-track { background: rgba(139,90,43,.05); border-radius: 10px; }
.modal::-webkit-scrollbar-thumb { background: var(--wood-warm); border-radius: 10px; }
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 42px; height: 42px; background: var(--paper-warm); border: none; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: all .3s; z-index: 10; color: var(--wood-dark); }
.modal-close:hover { background: var(--wood-warm); color: var(--paper); transform: rotate(90deg); }
.modal h2 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; margin-bottom: 2.5rem; font-weight: 400; color: var(--wood-darkest); border-bottom: 1px solid rgba(139,90,43,.15); padding-bottom: 1.5rem; }
.modal h3 { font-family: 'Inter', sans-serif; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; margin: 2.5rem 0 1rem; color: var(--wood-warm); font-weight: 600; }
.modal p, .modal li { font-size: .95rem; line-height: 1.85; color: rgba(36,21,16,0.85); margin-bottom: 1.2rem; }
.modal ul { padding-left: 1.5rem; margin-bottom: 1.5rem; list-style: square; }
.modal a { color: var(--wood-warm); text-decoration: none; border-bottom: 1px solid rgba(139,90,43,.3); transition: all .3s; }
.modal a:hover { color: var(--wood-darkest); border-color: var(--wood-darkest); }
.modal-divider { height: 1px; background: rgba(139,90,43,.15); margin: 3rem 0; }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(26,17,8,.95); z-index: 300; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.lightbox.active { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; background: transparent; border: 1px solid rgba(232,220,196,.5); cursor: pointer; display: grid; place-items: center; transition: all .3s; }
.lightbox-close:hover { background: var(--paper); border-color: var(--paper); }
.lightbox-close svg { width: 18px; height: 18px; color: var(--wood-cream); transition: color .3s; }
.lightbox-caption { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: var(--wood-cream); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; }

/* === COOKIE CONSENT (DIZAJN SAJTA) === */
.bc-overlay {
  position: fixed; inset: 0; background: rgba(26,17,8,0.85); backdrop-filter: blur(5px); z-index: 99999;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.bc-modal {
  background: var(--paper); width: 100%; max-width: 650px;
  display: flex; flex-direction: column; overflow: hidden; font-family: 'Inter', sans-serif;
  box-shadow: 0 30px 90px rgba(0,0,0,0.5); border: 1px solid rgba(139,90,43,.2); border-radius: 6px;
}
.bc-header { padding: 2.5rem 2.5rem 1.5rem; position: relative; text-align: center; }
.bc-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 400; color: var(--wood-darkest); margin: 0; line-height: 1.1; }
.bc-close { 
  position: absolute; top: 1.5rem; right: 1.5rem; width: 40px; height: 40px; background: var(--paper-warm); 
  border: none; border-radius: 50%; color: var(--wood-dark); cursor: pointer; 
  display: grid; place-items: center; transition: all .3s; z-index: 10;
}
.bc-close:hover { background: var(--wood-warm); color: var(--paper); transform: rotate(90deg); }

.bc-body {
  padding: 1rem 2.5rem 1.5rem; max-height: 40vh; overflow-y: auto; 
  border-top: 1px solid rgba(139,90,43,.15); border-bottom: 1px solid rgba(139,90,43,.15);
  font-size: 0.92rem; color: var(--wood-dark); line-height: 1.7;
}
.bc-body::-webkit-scrollbar { width: 6px; }
.bc-body::-webkit-scrollbar-track { background: rgba(139,90,43,.05); }
.bc-body::-webkit-scrollbar-thumb { background: var(--wood-warm); border-radius: 10px; }
.bc-body p { margin-bottom: 1.2rem; }
.bc-body p:last-child { margin-bottom: 0; }
.bc-body a { color: var(--wood-warm); text-decoration: none; border-bottom: 1px solid rgba(139,90,43,.3); cursor: pointer; transition: all .3s; }
.bc-body a:hover { color: var(--wood-darkest); border-color: var(--wood-darkest); }

.bc-actions { padding: 2rem 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.bc-btn {
  width: 100%; padding: 1.1rem; border: none; font-weight: 500; font-size: 0.75rem; 
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease; 
  font-family: 'Inter', sans-serif; display: flex; justify-content: center; align-items: center; gap: .5rem; border-radius: 4px;
}
.bc-btn-primary { background: var(--wood-warm); color: var(--paper); box-shadow: 0 4px 15px rgba(139,90,43,.2); }
.bc-btn-primary:hover { background: var(--wood-darkest); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,90,43,.3); }
.bc-btn-secondary { background: transparent; color: var(--ink); border: 1px solid rgba(139,90,43,.3); }
.bc-btn-secondary:hover { background: rgba(139,90,43,.05); border-color: var(--wood-warm); color: var(--wood-darkest); }

.bc-footer { background: var(--paper-warm); padding: 1.2rem 2.5rem; display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; font-size: 0.8rem; border-top: 1px solid rgba(139,90,43,.15); }
.bc-footer a { color: var(--wood-dark); text-decoration: none; cursor: pointer; transition: color 0.3s; letter-spacing: 0.05em; }
.bc-footer a:hover { color: var(--wood-warm); }

.bc-toggle-row { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0; border-bottom: 1px solid rgba(139,90,43,.1); }
.bc-toggle-row:last-child { border-bottom: none; }
.bc-toggle-row input[type="checkbox"] { appearance: none; width: 42px; height: 24px; background: rgba(139,90,43,.25); border-radius: 20px; position: relative; cursor: pointer; transition: 0.3s; flex-shrink: 0; }
.bc-toggle-row input[type="checkbox"]::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: var(--paper); border-radius: 50%; transition: 0.3s; }
.bc-toggle-row input[type="checkbox"]:checked { background: var(--wood-warm); }
.bc-toggle-row input[type="checkbox"]:checked::after { transform: translateX(18px); }
.bc-toggle-row input[type="checkbox"]:disabled { opacity: 0.5; cursor: not-allowed; }


/* RESPONSIVE */
@media(max-width:1200px) {
  .hero-box { width: 65%; clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%); padding-right: 6rem; }
}

@media(max-width:1100px){
  .gallery-grid{grid-template-columns:repeat(6,1fr);grid-auto-rows:130px}
  .gi-1{grid-column:span 6;grid-row:span 3}
  .gi-2{grid-column:span 6;grid-row:span 2}
  .gi-3,.gi-4{grid-column:span 3;grid-row:span 2}
  .gi-5{grid-column:span 6;grid-row:span 3}
  .gi-6,.gi-7{grid-column:span 3;grid-row:span 2}
}

/* NOVO: Dodato za Tablet ekrane (Novi Footer u 2 kolone umesto 4) */
@media(max-width:1024px){
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-brand { grid-column: span 2; }
}

@media(max-width:900px){
  .hero-box { width: 80%; clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%); padding-right: 4rem; }
}

@media(max-width:768px){
  .nav{padding:1.2rem 1.5rem}
  .nav.scrolled{padding:.9rem 1.5rem}
  .nav-menu{position:fixed;top:0;right:0;width:80%;max-width:340px;height:100vh;background:var(--paper);flex-direction:column;padding:6rem 2.5rem 2rem;gap:1.8rem;align-items:flex-start;transform:translateX(100%);transition:transform .4s ease;box-shadow:-20px 0 60px rgba(36,21,16,.15)}
  .nav-menu.open{transform:translateX(0)}
  .menu-toggle{display:flex}
  
  /* Na telefonu nema ukrivljenja hero-boxa */
  .hero-box { width: 100%; clip-path: none; background: rgba(246,240,229, 0.88); padding: 7rem 1.5rem 3rem; backdrop-filter: blur(10px); }
  .hero h1{font-size:clamp(2.8rem,9vw,3.8rem)}
  .scroll-cue{display:none}
  
  section{padding:4.5rem 1.5rem}
  .aktuelles{padding:4.5rem 1.5rem}
  .aktuelles h2{font-size:2.2rem}
  .gallery-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:160px;gap:.8rem}
  .gi-1,.gi-2,.gi-5{grid-column:span 2;grid-row:span 2}
  .gi-3,.gi-4,.gi-6,.gi-7{grid-column:span 1;grid-row:span 2}
  .step{grid-template-columns:1fr;padding:1.8rem 1.4rem}
  .contact-form{padding:2rem 1.5rem}
  
  /* Novi Footer na telefonu (1 kolona, sve centrirano na dnu) */
  .footer-top { padding: 3rem 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 0; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1.5rem; justify-content: center; }
  .footer-bottom div { justify-content: center; width: 100%; }
  
  /* Modal responsive */
  .bc-header { padding: 2rem 1.5rem 1.5rem; }
  .bc-body { padding: 1rem 1.5rem; }
  .bc-actions { padding: 1.5rem; }
  .bc-footer { padding: 1.2rem 1.5rem; gap: 1rem; }
}