:root {
  --kalman-white: #f5f1eb;
  --kalman-cream: #ece7e0;
  --kalman-beige: #d7cab7;
  --kalman-gold: #b89a63;
  --kalman-gold-dark: #8b6f3c;
  --kalman-charcoal: #232426;
  --kalman-slate: #313338;
  --kalman-muted: #807c77;
  --kalman-border: rgba(35, 36, 38, 0.12);
  --kalman-shadow: 0 22px 50px rgba(16, 17, 19, 0.18);
  --radius-lg: 24px;
  --radius-md: 18px;
  --transition: 320ms ease;
  --copy-font-size: 1rem;
  --copy-line-height: 1.7;
  --copy-font-size-sm: 0.96rem;
  --copy-line-height-sm: 1.65;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--kalman-charcoal);
  background: var(--kalman-white);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.mb-6{
  margin-bottom: 60px !important;
}
.mb-4{
  margin-bottom: 40px !important;
}

.relative{
  position: relative;
}

.site-shell {
  width: min(100% - 24px, 1180px);
}
.site-shell .col-md-6{
  margin-bottom: 40px;
}
.site-shell .col-md-6:first-child:before{
  content: "";
  height: 200%;
  width: 1px;
  background: url("/assets/images/line.svg");
  position: absolute;
  right: 0px;
  background-size: contain;

}

.site-header {
  position: sticky;
  top: 15px;
  z-index: 1000;
  padding: 0px;
  height: 0px;
}
.site-header .site-shell{
  width: min(100% - 6px, 1290px);
  background: #f5f1eb;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(35, 36, 38, 0.08);
  padding: 4px 20px;
}

.navbar {
  padding: 0;
}

.navbar-brand img {
  width: 126px;
  height: auto;
}

.main-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.site-nav-list,
.site-nav-languages,
.nav-submenu,
.site-menu-list,
.site-menu-sublist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav-languages {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: 0.8rem;
}

.nav-item {
  position: relative;
}

.nav-link-row,
.site-menu-link-row {
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 17px;
  font-weight: 500;
  color: #1E1F22;
  transition: color var(--transition);
}

.site-nav-list > .nav-item > .nav-link-row {
  padding: 0.15rem 0.15rem;
}

.site-nav-list > .nav-item > .nav-link-row > .nav-link {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--kalman-charcoal);
}

.submenu-toggle {
  position: relative;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.submenu-toggle::before,
.submenu-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 43%;
  width: 8px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform var(--transition), background-color var(--transition);
}

.submenu-toggle::before {
  transform: translate(45%, -50%) rotate(-45deg);
}

.submenu-toggle::after {
  transform: translate(-5%, -50%) rotate(45deg);
}

[data-submenu-item].is-open > .nav-link-row > .submenu-toggle::before,
[data-submenu-item].is-open > .site-menu-link-row > .submenu-toggle::before,
.site-nav-list .nav-item:hover > .nav-link-row > .submenu-toggle::before,
.site-nav-list .nav-item:focus-within > .nav-link-row > .submenu-toggle::before {
  transform: translate(45%, -50%) rotate(45deg);
}

[data-submenu-item].is-open > .nav-link-row > .submenu-toggle::after,
[data-submenu-item].is-open > .site-menu-link-row > .submenu-toggle::after,
.site-nav-list .nav-item:hover > .nav-link-row > .submenu-toggle::after,
.site-nav-list .nav-item:focus-within > .nav-link-row > .submenu-toggle::after {
  transform: translate(-5%, -50%) rotate(-45deg);
}

.submenu-toggle-desktop {
  width: 30px;
  height: 30px;
  color: rgba(30, 31, 34, 0.72);
}

.submenu-toggle-desktop:hover,
.submenu-toggle-desktop:focus-visible {
  color: #1e1f22;
}

.nav-submenu-shell {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 240px;
  z-index: 20;
  padding-top: 10px;
}

.main-nav-wrap .site-nav-list .nav-item:hover > .nav-submenu-shell,
.main-nav-wrap .site-nav-list .nav-item:focus-within > .nav-submenu-shell,
.main-nav-wrap .site-nav-list .nav-item.is-open > .nav-submenu-shell {
  display: block;
}

.nav-submenu {
  display: grid;
  gap: 0.2rem;
  padding: 0.7rem;
  background: rgba(245, 241, 235, 0.98);
  border: 1px solid rgba(35, 36, 38, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(16, 17, 19, 0.14);
  backdrop-filter: blur(14px);
}

.nav-submenu .nav-item {
  min-width: 220px;
}

.nav-submenu .nav-link-row {
  justify-content: space-between;
  gap: 0.65rem;
}

.nav-submenu .nav-link {
  display: block;
  width: 100%;
  padding: 0.8rem 0.95rem;
  font-size: 0.96rem;
  line-height: 1.35;
  border-radius: 14px;
}

.nav-submenu .nav-item:hover > .nav-link-row > .nav-link,
.nav-submenu .nav-item:focus-within > .nav-link-row > .nav-link,
.nav-submenu .nav-item.is-active > .nav-link-row > .nav-link {
  background: rgba(184, 154, 99, 0.14);
}

.nav-submenu .nav-submenu-shell {
  top: -10px;
  left: calc(100% + 8px);
  padding-top: 0;
  padding-left: 10px;
}
.nav-item.language{
  margin-right: -15px;
  position: relative;
}
.nav-item.language:before{
  position: absolute;
  content: "/";
  right: -4px;
  top: 9px;
}

.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0;
  color: #1e1f22;
  background: transparent;
  border: 0;
}

.menu-trigger-icon {
  display: inline-grid;
  gap: 4px;
  width: 18px;
  justify-items: end;
}

.menu-trigger-icon span {
  display: block;
  height: 1px;
  background: #8a8b8d;
  width: 100%;
}
.menu-trigger-icon span:nth-child(2){
  width: 80%;
}
.menu-trigger-icon span:nth-child(3){
  width: 60%;
}

.menu-trigger-label {
  font-size: 16px;
  font-weight: 500;
}

.menu-trigger:focus-visible,
.site-menu-close:focus-visible {
  outline: 2px solid rgba(193, 165, 123, 0.65);
  outline-offset: 4px;
}

.site-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 910;
  background: rgba(16, 18, 22, 0.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.site-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 920;
  width: min(420px, 100vw);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(30, 31, 34, 0.96);
  transform: translateX(100%);
  transition: transform 360ms ease;
  overflow-y: auto;
}

.site-menu-panel[hidden] {
  display: none !important;
}

.site-menu-panel-inner {
  min-height: 100%;
  padding: 92px 28px 28px;
}

.site-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-menu-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-menu-close {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-menu-grid {
  display: grid;
  gap: 1.4rem;
}

.site-menu-group-title {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

.site-menu-group ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-menu-group li + li {
  margin-top: 0.45rem;
}

.site-menu-group a {
  color: rgba(255, 255, 255, 0.84);
  font-family: "Inter", sans-serif;
  font-size: 0.98rem;
  line-height: 1.5;
  transition: color var(--transition);
}

.site-menu-group a:hover {
  color: #c1a57b;
}

.site-menu-list,
.site-menu-sublist {
  display: grid;
  gap: 0.7rem;
}

.site-menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-menu-link-row {
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
}

.site-menu-link {
  display: block;
  flex: 1 1 auto;
  padding: 0.2rem 0 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.site-menu-item.is-active > .site-menu-link-row > .site-menu-link {
  color: #c1a57b;
}

.submenu-toggle-mobile {
  width: 36px;
  height: 36px;
  margin-top: -0.35rem;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.site-menu-sublist-shell {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition);
}

.site-menu-sublist-shell[data-submenu-open="true"] {
  grid-template-rows: 1fr;
}

.site-menu-sublist-shell > .site-menu-sublist {
  min-height: 0;
  overflow: hidden;
  padding-left: 1rem;
  margin-bottom: 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.site-menu-sublist .site-menu-link {
  padding: 0.1rem 0 0.65rem;
  font-size: 0.96rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .site-menu-panel {
  transform: translateX(0);
}

.hero-section {
  position: relative;
  min-height: clamp(520px, 72vw, 760px);
  display: grid;
  align-items: end;
  overflow: clip;
  padding-bottom: 7%;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(28, 26, 24, 0.62) 0%, rgba(28, 26, 24, 0.22) 42%, rgba(28, 26, 24, 0.05) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.24) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(40px, 8vw, 86px);
}

.hero-copy {
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--kalman-charcoal);
  background: rgba(184, 154, 99, 0.92);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  transition: background-color var(--transition), color var(--transition);
}

a.eyebrow:hover,
a.eyebrow:focus-visible {
  color: #fff;
  background: rgba(139, 111, 60, 0.96);
}

.hero-copy h1,
.section-copy h2,
.section-head h2 {
  color: #1E1F22;
  font-size: 5.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 5rem;
  letter-spacing: 0.125rem !important;
}

.hero-copy h1 {
  color: #FFF;
  font-size: 74px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 24px !important;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 20px;
}

.hero-copy p {
  margin: 0.65rem 0 0;
  /*font-size: clamp(1rem, 2vw, 1.35rem);*/
  /*font-weight: 700;*/
  /*text-transform: uppercase;*/

  color: #FFF;
  font-family: Inter;
  font-size: 2.0rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
}

.intro-section,
.projects-section,
.reasons-section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.section-copy h2,
.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 3.75rem);
  letter-spacing: -0.04em;
}

.section-copy h2 span,
.section-head h2 span,
.project-link {
  color: var(--kalman-gold);
}
.projects-section{
  background: url("/assets/images/aktuelni-projekti.jpg");
  background-size: 50% 100%;
  background-repeat: no-repeat;
  background-position: right;
  background-color: #ffffff;
}
.projects-section h2{
  margin-bottom: 40px;
}
.filteri button{
  background: none;
  border: 1px solid #C1A57B;
  color: #51504D;
  padding: 10px 15px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.filteri button.active{
  background: #C1A57B;
  color: white;
}
.filteri button:hover{
  background: #C1A57B;
  border: 1px solid #C1A57B;
  color: white;
}

.section-copy{
  padding: 40px 0px;
}
.section-copy p {
  color: #51504D;
  font-family: Inter;
  font-size: var(--copy-font-size);
  font-style: normal;
  font-weight: 400;
  line-height: var(--copy-line-height);
  margin-top: 30px;
}

.material-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 430px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--kalman-shadow);
}

.material-panel {
  min-height: 220px;
}

.material-panel-stone {
  background:
    radial-gradient(circle at 25% 30%, rgba(71, 55, 38, 0.16), transparent 12%),
    radial-gradient(circle at 62% 58%, rgba(60, 46, 31, 0.16), transparent 11%),
    radial-gradient(circle at 78% 19%, rgba(71, 55, 38, 0.12), transparent 7%),
    linear-gradient(135deg, #b8aa94 0%, #d7c8b2 46%, #baa78d 100%);
  filter: contrast(1.04) saturate(0.9);
}

.material-panel-wood {
  background:
    linear-gradient(90deg, #2e251b 0 16%, #b6854c 16% 32%, #2e251b 32% 48%, #b6854c 48% 64%, #2e251b 64% 80%, #b6854c 80% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.08));
  background-size: 100% 100%, 100% 100%;
}

.values-section {
  position: relative;
  padding: clamp(56px, 8vw, 98px) 0;
  color: #fff;
  overflow: clip;
}

.values-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 18, 20, 0.85), rgba(17, 18, 20, 0.92)),
    url("../images/building-card.png") center/cover no-repeat;
  transform: scale(1.08);
  filter: blur(1px);
}

.value-card {
  position: relative;
  height: 100%;
  padding: 1.4rem 1rem;
  text-align: center;
}

.value-card h3 {
  color: #FFF;
  text-align: center;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.0625rem;
  margin-bottom: 20px;
}
.value-card h3 span {
  color: #C1A57B;
}

.value-card p {
  margin: 0 auto;
  max-width: 28rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.project-link {
  color: #C1A57B;
  font-size: 2.6rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.25rem;
  margin-top: 50px;
  position: relative;
}

.project-link:after {
  content: "";
  width: 85px;
  height: 20px;
  background: url("/assets/images/arrow-right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -20px;
  right: -10px;
  transition: all 0.3s ease;
}
.project-link:hover:after{
  right: -20px;
}
.project-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--kalman-shadow);
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 241, 235, 0.58) 0%, rgba(245, 241, 235, 0.08) 34%, rgba(245, 241, 235, 0) 100%);
}

.project-media img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
}

.reasons-section {
  background: linear-gradient(180deg, #e9eaee 0%, #f2f1ef 100%);
}
.reasons-grid{
  margin: 60px 0px;
}

.section-head {
  margin-bottom: 2.2rem;
}

.reason-card {
  height: 100%;
  padding: 1rem 0.55rem;
  text-align: center;
}
.reason-card p{
  color: #1E1F22;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}

.reason-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 0.9rem;
}

.reason-icon img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.reason-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #979390;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reason-card h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 700;
  color: #5f5d5a;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

.ghost-button,
.solid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 0.95rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 800;
  border-radius: 0;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.ghost-button:hover,
.solid-button:hover {
  transform: translateY(-2px);
}

.ghost-button {
  color: #1E1F22;
  border: 1px solid #C1A57B;
}

.solid-button {
  color: #1E1F22;
  background: var(--kalman-gold);
  border: 1px solid transparent;
}

.solid-button:hover {
  background: var(--kalman-gold-dark);
}

.kalman-dark-buttons {
  width: 100%;
  padding: clamp(36px, 5vw, 56px) 0;
  background: #1e1f22;
}

.kalman-dark-buttons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.kalman-dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 0.95rem 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  border: 1px solid #c1a57b;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.kalman-dark-button:hover {
  transform: translateY(-2px);
}

.kalman-dark-button.is-solid {
  color: #1e1f22;
  background: #c1a57b;
}

.kalman-dark-button.is-ghost {
  color: #c1a57b;
  background: #1e1f22;
}

.kalman-dark-button.is-solid:hover {
  background: #cfb38c;
  border-color: #cfb38c;
}

.kalman-dark-button.is-ghost:hover {
  color: #1e1f22;
  background: #c1a57b;
}

body.home .hero-section .zlatibor-primary-button {
  min-width: 248px;
  padding: 1.08rem 1.7rem;
  font-size: 0.96rem;
}

body.home .hero-section .eyebrow {
  animation: home-eyebrow-pulse 2.8s ease-in-out infinite;
}

@media (min-width: 769px) {
  body.home .hero-section .eyebrow {
    font-size: 26px;
  }
}

@keyframes home-eyebrow-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(184, 154, 99, 0);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 12px rgba(184, 154, 99, 0.08);
  }
}

.site-footer {
  position: relative;
  padding: 2rem 0 2.5rem;
  color: rgba(255, 255, 255, 0.82);
  background-color: #1E1F22;
  background-image: url("../images/footer-note-image.png");
  background-position: right;
  background-repeat: no-repeat;
}
.site-footer .col-sm-6:before{
    content: "";
    height: 100%;
    width: 1px;
    background: url("/assets/images/line.svg");
    position: absolute;
    right: 5px;
    background-size: contain;
}
.site-footer .col-sm-6:nth-child(4):before,.site-footer .col-sm-6:nth-child(5):before{
  display: none;
}
.site-footer .social{
  gap: 10px;
}

.site-footer .social img,
.footer-note img {
  height: auto;
}

.footer-block h4,
.footer-note p {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
}

.footer-block p,
.footer-block a {
  display: block;
  margin: 0 0 0.42rem;
  line-height: 1.55;
  color: #E8E6E2;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 212.5% */
}
.footer-block .footer-content > *:last-child{
  margin-bottom: 0;
}
.footer-block .footer-content ul,
.footer-block .footer-content ol{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-block .footer-content li{
  margin: 0 0 0.42rem;
  color: #E8E6E2;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.footer-block .footer-content strong,
.footer-block .footer-content b{
  font-weight: 500;
}
.footer-block .headline{
  color: #E8E6E2;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 49px; /* 245% */
  text-transform: uppercase;
}
.footer-note {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.footer-note p {
  max-width: 18rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}

.page-default-content {
  padding: 8.5rem 0 5rem;
}

.page-default-content__inner {
  max-width: 860px;
}

.page-default-content__title {
  margin: 0 0 1.5rem;
  color: #1E1F22;
}

.page-default-content__inner > *:last-child {
  margin-bottom: 0;
}

.page-default-content__inner h1,
.page-default-content__inner h2,
.page-default-content__inner h3,
.page-default-content__inner h4,
.page-default-content__inner h5,
.page-default-content__inner h6 {
  margin: 0 0 1rem;
  color: #1E1F22;
}

.page-default-content__inner p,
.page-default-content__inner li {
  color: #313338;
  font-size: 17px;
  line-height: 1.8;
}

.page-default-content__inner ul,
.page-default-content__inner ol {
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body.home .hero-section .eyebrow {
    animation: none;
  }
}

@media (max-width: 991.98px) {
  .site-header {
    padding: 0px;
  }

  .main-nav-wrap {
    display: none !important;
  }

  .kalman-media-slide-frame {
    height: 56vh;
    min-height: 420px;
  }

  .hero-section {
    min-height: 460px;
  }

  .material-grid {
    min-height: 320px;
  }
}
.copy{
  font-size: 12px;
  margin-top: 20px;
}


@media (max-width: 768px) {
  .site-shell .col-md-6{
    margin-bottom: 10px;
  }
  .reasons-grid{
    margin: 25px 0px;
  }
  .zlatibor-decision-shot .white p, .zlatibor-decision-shot .white h5{
    margin-top: 0px !important;
  }
  .zlatibor-decision-shot .col-lg-6.mb-4{
    margin-bottom: 0px !important;
  }
  .zlatibor-steps{
    padding-left: 0px !important;
  }
  .hram-benefits{
    margin-top: 0px !important;
  }
  .projects-section{
    background: url("/assets/images/aktuelni-projekti-mob.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 0px;
    padding-top: 20px;
    padding-bottom: 80%;
  }
  .hero-copy h1, .section-copy h2, .section-head h2{
    line-height: 2rem;
  }
  .section-copy{
    padding: 10px 0px;
  }
  .intro-section .col-lg-5{
    margin-top: 0px;
  }
  .hero-copy h1{
    letter-spacing: 12px !important;
    line-height: 25px;
  }
  .site-shell {
    width: min(100% - 20px, 1180px);
  }
  .cta-row{
    flex-wrap: wrap;
  }
  .cta-row .ghost-button{
    width: 47%;
  }

  .ghost-button, .solid-button{
    padding: 0.80rem 0.5rem;
  }
  .site-header .site-shell {
    width: min(100% - 8px, 1290px);
    padding: 4px 12px;
  }

  .navbar-brand img {
    width: 112px;
  }

  .menu-trigger {
    gap: 0.45rem;
  }

  .menu-trigger-label {
    font-size: 15px;
  }

  .site-menu-panel {
    width: min(360px, 100vw);
  }

  .site-menu-panel-inner {
    padding: 82px 20px 24px;
  }

  .site-menu-group-title {
    font-size: 1.2rem;
  }

  .site-menu-group a {
    font-size: 0.92rem;
  }

  .site-menu-link {
    font-size: 0.98rem;
  }

  .site-menu-sublist .site-menu-link {
    font-size: 0.92rem;
  }

  .kalman-media-slide-frame {
    height: 44vh !important;
    min-height: 280px !important;
  }

  .hero-section {
    min-height: 490px;
  }

  .hero-content {
    padding-bottom: 30px;
  }

  .eyebrow {
    margin-bottom: 0.7rem;
    color: #1E1F22;
    font-size: 15px;
  }

  .hero-copy h1 {
    font-size: 2.15rem;
  }

  .hero-copy p {
    font-size: 1.1rem;
    max-width: 15rem;
  }

  .section-copy h2,
  .section-head h2 {
    font-size: 2rem;
  }

  .section-copy p,
  .value-card p,
  .reason-card h3,
  .footer-note p {
    font-size: 16px;
  }

  .material-grid {
    min-height: 250px;
  }

  .value-card {
    padding: 0.5rem 0.4rem;
  }

  .value-card h3 {
    font-size: 32px;
  }

  .project-link {
    font-size: 1.55rem;
  }

  .project-media img {
    min-height: 220px;
  }

  .reason-icon {
    width: 62px;
    height: 62px;
  }

  .reason-icon svg {
    width: 26px;
    height: 26px;
  }

  .ghost-button,
  .solid-button {
    width: 100%;
    min-width: 0;
  }

  .kalman-dark-buttons-row {
    gap: 0.75rem;
  }

  .kalman-dark-button {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    padding: 1.7rem 0 2rem;
  }
  .zlatibor-location-copy{
    margin-top: 30px !important;
  }
  .zlatibor-steps li{
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .zlatibor-steps li div{
    min-width: 100% !important;
  }
  .zlatibor-steps li div img{
    margin: 0 auto;
  }
  /*.zlatibor-specs .image-flud{*/
  /*  min-height: 320px;*/
  /*}*/
  .zlatibor-aerial-card{
    position: initial !important;
  }
  .zlatibor-spec-actions .zlatibor-primary-button{
    width: 75%;
  }
}

.zlatibor-page .site-header {
  top: 15px;
}

.zlatibor-hero .hero-copy {
  text-align: center;
  width: 100%;
}

.zlatibor-hero .hero-copy h1 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.zlatibor-hero .hero-copy p {
  margin-top: 0;
  max-width: none;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.08rem;
}

.zlatibor-hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
#zlatibor-uvod h2{
  font-size: 42px;
}

.zlatibor-primary-button,
.zlatibor-secondary-button,
.zlatibor-location-button,
.zlatibor-process-button {
  min-width: 210px;
}

.zlatibor-secondary-button {
  background: rgba(193, 165, 123, 0.92);
  color: #1e1f22;
  border-color: transparent;
}

.zlatibor-intro {
  padding: clamp(56px, 8vw, 96px) 0;
}

.zlatibor-intro-copy {
  padding-top: 0;
}

.zlatibor-intro-copy p {
  margin-top: 1rem;
}

.zlatibor-location-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.zlatibor-location-copy {
  margin: 0;
  color: #c1a57b;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.5;
}
.zlatibor-location-copy img{
  height: 27px;
}
.zlatibor-location-button{
  min-width: 200px;
  font-weight: 600;
}
.zlatibor-media-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.zlatibor-media-label {
  display: inline-block;
  align-self: center;
  padding: 0.7rem 1.45rem;
  color: #1e1f22;
  background: #cdb183;
  font-size: 1rem;
  font-weight: 500;
}

a.zlatibor-media-label {
  transition: color var(--transition), background-color var(--transition);
}

a.zlatibor-media-label:hover {
  color: #fff;
  background: #b8945f;
}

.zlatibor-media-card img {
  width: 100%;
}
.zlatibor-decision-shot{
  background-color: #f5f1eb;
  background-image:
    linear-gradient(180deg, rgba(18, 19, 22, 0.22), rgba(18, 19, 22, 0.38)),
    var(--decision-shot-bg-image, url("/assets/images/kalmanzlatiborback.png"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 80px;
}
.zlatibor-decision-shot .site-shell .col-md-6:first-child:before{
  display: none;
}
.zlatibor-decision-shot h2{
  color:#1E1F22;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 2px;
}
.zlatibor-decision-shot h2 span{
  color: #C1A57B;
}
.zlatibor-decision-shot h4{
  color:  #1E1F22;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
}
.zlatibor-decision-shot h4 span{
  color: #C1A57B;
}

.zlatibor-decision-shot .white p, .zlatibor-decision-shot .white h5{
  color: #FFF;
  font-family: Inter;
  font-size: var(--copy-font-size);
  font-style: normal;
  font-weight: 400;
  line-height: var(--copy-line-height);
  margin-top: 30px;
}

.zlatibor-decision-shot h5{
  font-size: 26px !important;
  font-style: normal !important;
  font-weight: 600  !important;
  letter-spacing: 1px !important;
}
.zlatibor-decision-shot h5 span{
  color: #C1A57B;
}

.zlatibor-kitchen {
  background: #f5f1eb;
}

.zlatibor-decision-shot img,
.zlatibor-kitchen img {
  width: 100%;
}

.zlatibor-kitchen {
  position: relative;
}

.zlatibor-kitchen .carousel {
  position: relative;
}

.zlatibor-kitchen .carousel-item {
  background: #e9e1d6;
}

.kalman-media-slide-frame {
  height: 70vh;
  min-height: 520px;
  max-height: 860px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.zlatibor-kitchen .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.zlatibor-kitchen-controls {
  position: absolute;
  right: 6%;
  bottom: 8%;
  z-index: 3;
  display: flex;
  gap: 1rem;
}

.zlatibor-kitchen-meta {
  position: absolute;
  left: 32%;
  bottom: 8.5%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  color: #fff;
}

.zlatibor-kitchen-title {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.zlatibor-kitchen-count {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 1.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.zlatibor-kitchen .carousel-control-prev,
.zlatibor-kitchen .carousel-control-next {
  position: static;
  width: 72px;
  height: 72px;
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: transparent;
}

.zlatibor-kitchen-arrow {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.zlatibor-process {
  padding: clamp(56px, 8vw, 96px) 0;
  background: #eef1f7;
}
.zlatibor-process .zlatibor-process-button{
  margin: 40px 0px;
}
.zlatibor-process-copy{
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.zlatibor-process .col-lg-4{
  display: flex;
}
.zlatibor-process-copy h2,
.zlatibor-specs-title h2,
.zlatibor-process-main-block h2 {
  margin: 0;
  color: #1e1f22;
  font-size: 42px;
  font-weight: 700;
  line-height: 46px;
}

.zlatibor-process-copy h2 span,
.zlatibor-specs-title h2 span,
.zlatibor-process-main-block h2 span {
  color: #c1a57b;
}

.zlatibor-specs .image-flud{
  margin-top: 0px;
}
.zlatibor-specs{
  margin-bottom: 60px;
}
.zlatibor-aerial-card{
  position: absolute;
  left: 20px;
}
.zlatibor-process-copy h3,
.zlatibor-process-main-block h3 {
  margin: 2.4rem 0 1rem;
  color: #1e1f22;
  font-size: 1.6rem;
  font-weight: 700;
}

.zlatibor-process-copy p {
  margin: 0 0 2rem;
  color: #c1a57b;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.45;
}

.zlatibor-steps {
  margin: 0;
  padding-left: 1.4rem;
  color: #1e1f22;
  font-family: "Inter", sans-serif;
}

.zlatibor-steps li {
  margin-bottom: 1.3rem;
  padding-left: 0.5rem;
  font-size: 1rem;
  line-height: 1.55;
  display: flex;
  align-items: center;
  background: #eef1f7;
}
.zlatibor-steps li div{
  min-width: 95px;
}
.zlatibor-steps li img{
  margin-right: 15px;
  height: 50px;
  mix-blend-mode: multiply;
}

.zlatibor-specs {
  padding: clamp(56px, 8vw, 96px) 0 2rem;
  background: #f5f1eb;
}

.zlatibor-spec-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.zlatibor-pdf-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 56px;
  color: #d7bf93;
  font-size: 1.35rem;
  font-weight: 700;
}
.zlatibor-pdf-badge img{
  height: 65px;
  margin-bottom: -10px;
}

.zlatibor-specs-copy p {
  margin: 0 0 1rem;
  color: #3d3d3c;
  font-family: "Inter", sans-serif;
  font-size: var(--copy-font-size);
  line-height: var(--copy-line-height);
}

.zlatibor-aerial-card img {
  width: 100%;
}

@media (max-width: 991.98px) {
  .zlatibor-hero-actions {
    margin-top: 1.5rem;
  }

  .zlatibor-primary-button,
  .zlatibor-secondary-button,
  .zlatibor-location-button,
  .zlatibor-process-button {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .zlatibor-intro .row {
    display: flex;
  }

  .zlatibor-intro-title-block {
    order: 1;
  }

  .zlatibor-intro-media-block {
    order: 2;
  }

  .zlatibor-intro-text-block {
    order: 3;
  }

  .zlatibor-intro-location-block {
    order: 4;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .zlatibor-hero .hero-copy h1 {
    letter-spacing: 0.65rem;
  }

  .zlatibor-hero .hero-copy p {
    font-size: 1.15rem;
  }

  .zlatibor-hero-actions {
    gap: 0.75rem;
  }

  .zlatibor-primary-button,
  .zlatibor-secondary-button,
  .zlatibor-location-button,
  .zlatibor-process-button {
    width: 100%;
  }

  .zlatibor-process-assets-block {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .zlatibor-process-copy h2,
  .zlatibor-specs-title h2,
  .zlatibor-process-main-block h2 {
    font-size: 2.6rem;
  }

  .zlatibor-process-copy h3,
  .zlatibor-process-main-block h3 {
    margin-top: 1.75rem;
  }

  .zlatibor-kitchen-controls {
    right: 5%;
    bottom: 15%;
    gap: 0.75rem;
  }
  .site-footer{
    background-position: bottom;
  }
  .site-footer .col-sm-6:before{
    display: none;
  }

  .zlatibor-kitchen-meta {
    left: 5%;
    right: 5%;
    bottom: 5%;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .zlatibor-kitchen-title,
  .zlatibor-kitchen-count {
    font-size: 0.95rem;
  }

  .zlatibor-kitchen-count {
    padding-left: 1rem;
  }

  .zlatibor-kitchen .carousel-control-prev,
  .zlatibor-kitchen .carousel-control-next {
    width: 56px;
    height: 56px;
  }

  .zlatibor-kitchen-arrow {
    font-size: 1.5rem;
  }
}

.galerija-page {
  background: #1e1f22;
}

.galerija-page .site-header {
  top: 15px;
}

.galerija-hero {
  min-height: 620px;
}

.galerija-hero .hero-copy {
  width: 100%;
  text-align: center;
}

.galerija-hero .hero-copy h1 {
  margin: 0 0 0.6rem;
  color: #fff;
  letter-spacing: 1rem;
}

.galerija-hero .hero-copy p {
  max-width: none;
  margin: 0;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.75rem;
  line-height: 1.2;
}

.galerija-section {
  padding: 4rem 0 0;
  background: #1e1f22;
}

.galerija-intro h2 {
  margin: 0 0 2rem;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.35;
}

.galerija-tabs-wrap {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.galerija-tabs {
  flex-wrap: nowrap;
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
}

.galerija-tabs::-webkit-scrollbar {
  height: 0;
}

.galerija-tabs .nav-link {
  padding: 0.2rem 0;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.42);
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
}

.galerija-tabs .nav-link.active,
.galerija-tabs .nav-link:hover {
  color: #c1a57b;
  border-color: #c1a57b;
  background: transparent;
}

.galerija-content {
  padding: 1.75rem 0 0;
}

.galerija-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.galerija-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #131416;
}

.galerija-card::after {
  content: "+";
  position: absolute;
  inset: auto 1rem 1rem auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  font-size: 1.6rem;
  background: rgba(30, 31, 34, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 220ms ease;
}

.galerija-card:hover::after {
  opacity: 1;
}

.galerija-card img {
  width: 100%;
  aspect-ratio: 1.17 / 1;
  object-fit: cover;
  transition: transform 240ms ease;
}

.galerija-card:hover img {
  transform: scale(1.03);
}

.fancybox__backdrop {
  background: rgba(16, 17, 20, 0.94);
}

.fancybox__caption {
  font-family: "Inter", sans-serif;
}

@media (max-width: 991.98px) {
  .galerija-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .galerija-hero {
    min-height: 360px;
  }

  .galerija-hero .hero-copy h1 {
    letter-spacing: 0.45rem;
  }

  .galerija-hero .hero-copy p {
    font-size: 1rem;
  }

  .galerija-section {
    padding-top: 2.5rem;
  }

  .galerija-intro h2 {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
  }

  .galerija-tabs .nav-link {
    font-size: 0.88rem;
  }

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

.onama-page .site-header {
  top: 15px;
}

.onama-hero {
  min-height: 760px;
}

.onama-hero .hero-copy h1 {
  margin-bottom: 0.75rem;
}

.onama-hero .hero-copy p {
  max-width: none;
}

.onama-intro {
  padding: clamp(56px, 8vw, 96px) 0;
  background: #f5f1eb;
  position: relative;
}

.onama-intro-art {
  margin-bottom: 2rem;
}

.onama-intro-art img {
  height: 60px;
}

.onama-intro-art text {
  fill: #c1a57b;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 42px;
  font-style: italic;
}
.subinfoholder .onama-intro-art img {
  height: 28px;
}

.onama-intro-image {
  overflow: hidden;
}

.onama-intro-image img {
  width: 100%;
}

.onama-intro-note {
  padding: 23px 70px 23px 45px;
  color: #c1a57b;
  background: #1E1F22;

  position: absolute;
  width: 580px;
  left: calc(50% - 260px);
  bottom: -100px;
}
.subinfoholder{
  margin-top: 120px;

}
.subinfoholder .onama-intro-art img{
  margin: 0 auto;
}

.onama-intro-note:after{
  content: "";
  position: absolute;
  background: url("/assets/images/about/intro-image.svg");
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  right: 10px;
  top: 10px;
}

.onama-intro-note p {
  color:  #C1A57B;
  font-family: Inter;
  font-size: var(--copy-font-size);
  line-height: var(--copy-line-height);
  font-style: normal;
  font-weight: 400;
}
.onama-intro-note p.white {
  color: white;
}

.onama-intro-note p:last-child {
  margin-bottom: 0;
}

.onama-copy {
  position: relative;
  padding-right: 3rem;
}

.onama-copy::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: url("/assets/images/about/ivica.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.onama-team {
  padding: clamp(56px, 8vw, 96px) 0;
  background: #1e1f22;
}

.onama-team .section-head h2 {
  color: #fff;
}

.onama-team-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  height: 100%;
  background: #fff;
}

.onama-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.onama-team-body {
  padding: 40px 20px 40px 30px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}

.onama-team-role {
  margin: 0 0 0.9rem;
  color: #51504D;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  border: 1px solid #51504D;
  display: inline-block;
  padding: 5px 25px;
  margin-bottom: 30px;
}

.onama-team-body h3 {
  margin: 0 0 0.4rem;
  color: #1e1f22;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.onama-team-body h4 {
  margin: 0 0 1rem;
  color: #6c6b68;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.onama-team-body .socialicons{
  display: flex;
  gap: 10px;
}
.onama-team-body .socialicons img{
  height: 50px;
}

.onama-team-body p:last-child {
  margin: 0;
  color: #51504d;
  font-family: "Inter", sans-serif;
  font-size: var(--copy-font-size-sm);
  line-height: var(--copy-line-height-sm);
  margin-bottom: 30px;
}

@media (max-width: 991.98px) {
  .onama-copy {
    padding-right: 0;
  }

  .onama-copy::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .onama-hero {
    min-height: 430px;
  }

  .onama-intro-art text {
    font-size: 32px;
  }

  .onama-team-card {
    grid-template-columns: 1fr;
  }

  .onama-team-photo img {
    aspect-ratio: 1 / 1.05;
  }
}

.hram-page .site-header {
  top: 15px;
}

.hram-hero {
  min-height: 560px;
}

.hram-hero .eyebrow{
  font-size: 16px;
  margin-bottom: 0px;
}

.hram-hero .hero-copy p {
  max-width: none;
  margin-top: 0px;
}

.hram-intro .hram-subtitle{
  margin-top: 0px !important;
}

.hram-intro .hram-subtitle img{
  height: 30px;
}

.hram-intro {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0;
  background-color: #f5f1eb;
}

.hram-intro::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(46vw, 760px);
  background-image: var(--hram-side-image);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 1600px) {
  .hram-intro::after {
    width: min(41vw, 970px);
    background-position: center center;
  }
}

.hram-intro .container,
.hram-intro .col-lg-6:first-child{
  position: relative;
  z-index: 1;
}

.hram-intro .col-lg-6:first-child{
  background: #f5f1eb;
}

.hram-intro:not([style*="--hram-side-image"])::after {
  display: none;
}

.hram-subtitle {
  color: #51504d;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.45;
}

.hram-intro-visual img {
  width: 100%;
}

.hram-benefits {
  margin-top: 2rem;
}

.hram-benefit-card {
  height: 100%;
  padding: 1.5rem 1rem 0.5rem;
  text-align: center;
}

.hram-benefit-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(193, 165, 123, 0.12);
}

.hram-benefit-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #9b8a6e;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hram-benefit-card h3 {
  color: #1e1f22;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin: 15px 0px;
}
.hram-benefits .col-md-4{
  padding: 0px;
}

.hram-benefit-card p {
  margin: 0 auto;
  color: #51504d;
  font-family: "Inter", sans-serif;
  font-size: var(--copy-font-size);
  line-height: var(--copy-line-height);
}
.hram-benefit-card img{
  height: 60px;
  margin: 0 auto;
}

.hram-urban {
  position: relative;
  color: #fff;
  overflow: clip;
}

.hram-urban-image img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  filter: brightness(0.7);
}

.hram-urban-content {
  position: relative;
  margin-top: -580px;
  padding-bottom: 4rem;
}

.hram-urban h2 {
  margin: 0;
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 65px;
}

.hram-urban h2 span{
color: #C1A57B;
}

.hram-urban-copy {
  padding: 40px;
  background: rgba(245, 241, 235, 0.92);
}

.hram-urban-copy p {
  margin: 0 0 1rem;
  color: #3f3f3d;
  font-family: "Inter", sans-serif;
  font-size: var(--copy-font-size);
  line-height: var(--copy-line-height);
}

.hram-urban-copy p:last-child {
  margin-bottom: 0;
}

.hram-lifestyle {
  padding: clamp(56px, 8vw, 96px) 0;
  background: #f5f1eb;
}

.hram-lifestyle.hram-lifestyle-white {
  background: #fff;
}

.hram-lifestyle-copy h2 {
  margin: 0 0 2rem;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
}

.hram-lifestyle-copy h2 span {
  color: #c1a57b;
}

.hram-lifestyle-features {
  display: flex;
  gap: 1.25rem;
  margin: 80px 0px 20px;
}

.hram-lifestyle.hram-lifestyle-text-mode .hram-lifestyle-features {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.hram-lifestyle-features article {
  padding-bottom: 1rem;
  text-align: center;
  background: #f5f1eb;
}

.hram-lifestyle.hram-lifestyle-white .hram-lifestyle-features article {
  background: #fff;
}

.hram-lifestyle.hram-lifestyle-text-mode .hram-lifestyle-features article {
  text-align: left;
  padding-bottom: 0;
}

.hram-lifestyle-features article img{
  height: 75px;
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.hram-lifestyle.hram-lifestyle-text-mode .hram-lifestyle-features article img {
  display: none;
}

.hram-lifestyle-features h3 {
  margin: 0 0 0.5rem;
  color: #1e1f22;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 20px 0px;
}

.hram-lifestyle.hram-lifestyle-text-mode .hram-lifestyle-features h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.hram-lifestyle-features p {
  margin: 0 0 15px 0;
  color: #51504d;
  font-family: "Inter", sans-serif;
  font-size: var(--copy-font-size);
  line-height: var(--copy-line-height);
}

.hram-lifestyle-no-video .row {
  align-items: stretch !important;
}

.hram-lifestyle-no-video .col-lg-6:last-child {
  display: flex;
}

.hram-video-card p{
  font-family: "Inter", sans-serif;
  font-size: var(--copy-font-size);
  line-height: var(--copy-line-height);
  color: #51504d;
}

.hram-video-card .ratio {
  background: #111;
}

.hram-video-copy {
  padding: 1.4rem 0px;
}

.hram-lifestyle-no-video .hram-video-card {
  display: flex;
  flex: 1 1 auto;
  min-height: 100%;
}

.hram-lifestyle-no-video .hram-video-copy {
  margin-top: auto;
  padding-top: 0;
}

.hram-video-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1366px) and (min-width: 1100px) {
  .hram-intro::after {
    width: min(36vw, 430px);
  }

  .hram-intro .col-lg-6:first-child {
    padding-right: clamp(28px, 3vw, 56px);
  }
}

@media (max-width: 991.98px) {
  .hram-urban-content {
    margin-top: -8rem;
  }
}

@media (max-width: 768px) {
  .hram-intro[style*="--hram-side-image"]::after {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: min(72vw, 360px);
    margin-top: 1.5rem;
    background-position: center center;
  }
  .hram-intro[style*="--hram-side-image"] .container{
    padding-bottom: 0;
  }
  .hram-hero {
    min-height: 400px;
  }
  .hram-urban h2{
    font-weight: 700;
    line-height: 40px;
    margin-top: -175px;
    font-size: 30px;
  }
  .hram-lifestyle-copy h2{
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
  }
  .hram-lifestyle-features{
    flex-wrap: wrap;
    justify-content: center;
  }
  .hram-lifestyle-features article{
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hram-lifestyle-features h3{
    font-size: 26px;
  }
  .hram-lifestyle-copy{
    text-align: center;
  }
  .onama-intro-note{
    position: relative;
    width: 100%;
    left: 0px;
    bottom: 0px;
  }
  .onama-intro-note p{
    font-size: var(--copy-font-size);
    line-height: var(--copy-line-height);
    font-style: normal;
    font-weight: 400;
  }
  .subinfoholder{
    margin-top: 10px !important;
  }
  .subinfoholder .onama-intro-art img{
    display: none;
  }
  .onama-team-body{
    text-align: center;
    justify-content: center;
  }

  .hram-subtitle {
    font-size: 1rem;
  }

  .hram-urban-image img {
    min-height: 420px;
  }

  .hram-urban-content {
    margin-top: -2rem;
    padding-bottom: 2rem;
  }
  .hram-lifestyle-features{
    margin: 0px !important;
  }
  .hram-intro,.onama-intro{
    padding-bottom: 0px;
  }
  .hram-lifestyle{
    padding-top: 10px;
  }

  .hram-urban-copy {
    padding: 1.1rem;
  }
  .zlatibor-process-copy h2, .zlatibor-specs-title h2, .zlatibor-process-main-block h2{
    margin-bottom: 0px !important;
  }
  .zlatibor-spec-actions{
    margin-top: 10px !important;
  }
  .zlatibor-process-main-block{
    text-align: center;
  }
}

.kontakt-page .site-header {
  top: 15px;
}

.kontakt-hero {
  min-height: 620px;
}

.kontakt-info {
  padding: clamp(52px, 7vw, 88px) 0 0;
  background: white;
}

.kontakt-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 0 0 1.5rem;
}

.kontakt-card-icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.kontakt-card-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: #b6b0aa;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
}

.kontakt-card-body {
  width: 100%;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(30, 31, 34, 0.12);
}

.kontakt-card-body p {
  margin: 0 0 0.25rem;
  color: #51504d;
  font-family: "Inter", sans-serif;
  font-size: var(--copy-font-size-sm);
  line-height: var(--copy-line-height-sm);
}

.kontakt-card-body p:last-child {
  margin-bottom: 0;
}

.kontakt-card-body a {
  transition: color var(--transition);
}

.kontakt-card-body a:hover {
  color: var(--kalman-gold-dark);
}


.kontakt-form-section {
  padding: 80px 0px 30px;
  background: white;
}

.kontakt-form-section .kontakt-copy{
  padding-top: 50px;
  border-top: 1px solid #D8D5CF;
}

.kontakt-copy {
  max-width: 100%;
}

.kontakt-copy h2 {
  margin-bottom: 0.9rem;
  font-size: 26px;
  line-height: 1.05;
}

.kontakt-copy .kontakt-lead {
  margin: 0 0 0.2rem;
  color: #1e1f22;
  font-family: "Inter", sans-serif;
  font-size: var(--copy-font-size-sm);
  font-weight: 400;
  line-height: var(--copy-line-height-sm);
}

.kontakt-copy p {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: #51504d;
  font-family: "Inter", sans-serif;
  font-size: var(--copy-font-size-sm);
  line-height: var(--copy-line-height-sm);
}

.kontakt-form {
  max-width: 100%;
  margin-top: 1.4rem;
}

.kontakt-form .form-control {
  min-height: 42px;
  padding: 0.55rem 0;
  color: #1e1f22;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  border: 0;
  border-bottom: 1px solid rgba(184, 154, 99, 0.28);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.kontakt-form textarea.form-control {
  min-height: 82px;
  resize: vertical;
}

.kontakt-form .form-control::placeholder {
  color: #51504d;
  font-size: 0.92rem;
  opacity: 1;
}

.kontakt-form .form-control:focus {
  border-color: #9b8a6e;
  background: transparent;
  box-shadow: none;
}

.kontakt-submit {
  width: 100%;
  min-height: 42px;
  margin-top: 0.35rem;
  padding: 0.7rem 1.2rem;
  font-size: 0.95rem;
}

.kontakt-map img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.kontakt-card-icon img{
  height: 42px;
}

@media (min-width: 769px) {
  .kontakt-card-icon {
    width: 68px;
    height: 68px;
  }

  .kontakt-card-icon svg {
    width: 54px;
    height: 54px;
  }

  .kontakt-card-icon img {
    height: 50px;
  }
}

@media (max-width: 991.98px) {
  .kontakt-copy {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .kontakt-hero {
    min-height: 420px;
  }

  .kontakt-card-body p{
    font-size: 16px;
  }
  .kontakt-card {
    padding-bottom: 0.75rem;
  }
  .kontakt-copy h2{
    font-weight: bold;
  }

  .kontakt-card-icon {
    width: initial;
    height: 52px;
  }

  .kontakt-card-icon img{
    height: 65px;
  }

  .kontakt-copy h2 {
    margin-bottom: 0.7rem;
  }

  .kontakt-form {
    margin-top: 1rem;
  }

  .kontakt-map img {
    min-height: 260px;
  }
}

.izdavanjestanova-page .site-header {
  top: 15px;
}

.rent-hero {
  min-height: 720px;
}

.rent-listing {
  padding: clamp(54px, 8vw, 86px) 0 clamp(30px, 4vw, 48px);
  background: #f5f1eb;
}

.filteri {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}



.rent-listing .is-hidden {
  display: none;
}

.rent-card {
  height: 100%;
  background: #fff;
  border: 1px solid rgba(30, 31, 34, 0.1);
}

.rent-card-media img {
  width: 100%;
  aspect-ratio: 62 / 40.5;
  object-fit: cover;
}

.rent-card-meta {
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem 1rem;
}

.rent-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #5b5955;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.rent-meta-location {
  justify-self: end;
}

.rent-meta-icon {
  display: inline-grid;
  place-items: center;
  color: #9b948b;
}

.rent-meta-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rent-meta-icon img {
  height: 35px;
  width: inherit;
}

@media (max-width: 1199.98px) {
  .rent-card-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0.75rem;
  }

  .rent-meta-location {
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .rent-hero {
    min-height: 430px;
  }

  .rent-listing {
    padding-top: 32px;
  }

  .filteri {
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .filteri button {
    padding: 0.65rem 1rem;
    font-size: 0.86rem;
  }

  .rent-card-meta {
    padding: 0.8rem 0.9rem 0.95rem;
    gap: 0.7rem;
  }

  .rent-meta-item {
    font-size: 0.8rem;
  }
}

.stan-page .site-header {
  top: 15px;
}

.stan-section {
  padding: clamp(90px, 10vw, 130px) 0 clamp(56px, 7vw, 96px);
  background: #edf0f4;
}

.stan-gallery-wrap {
  position: relative;
}

.stan-gallery-swiper {
  overflow: hidden;
  background: #d9d9d9;
}

.stan-gallery-swiper .swiper-slide a {
  display: block;
}

.stan-gallery-swiper img {
  width: 100%;
  aspect-ratio: 620 / 405;
  object-fit: cover;
}

.stan-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  color: #fff;
  background: rgba(184, 154, 99, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition);
}

.stan-gallery-arrow:hover {
  transform: translateY(-2px);
  background: rgba(184, 154, 99, 0.35);
}

.stan-gallery-prev {
  left: 14px;
}

.stan-gallery-next {
  right: 14px;
}

.stan-gallery-arrow span {
  font-size: 1.25rem;
  line-height: 1;
}

.stan-gallery-pagination {
  position: absolute;
  left: 50%;
  bottom: 16px !important;
  z-index: 3;
  display: inline-flex;
  width: auto !important;
  transform: translateX(-50%);
}

.stan-gallery-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.stan-gallery-pagination .swiper-pagination-bullet-active {
  background: #c1a57b;
}

.stan-info {
  padding-left: 0.25rem;
}

.stan-meta {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 1.1rem;
  align-items: center;
  padding-bottom: 0.9rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(184, 154, 99, 0.3);
}

.stan-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #575551;
  font-family: "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.stan-meta-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  color: #a9a29a;
  background: #eef0f4;
}
.stan-meta-icon img{
  mix-blend-mode: multiply;
}

.stan-meta-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stan-copy p {
  margin: 0 0 0.8rem;
  color: #66645f;
  font-family: "Inter", sans-serif;
  font-size: var(--copy-font-size-sm);
  line-height: var(--copy-line-height-sm);
}

.stan-copy p:last-child {
  margin-bottom: 0;
}

.stan-actions {
  display: flex;
  align-items: stretch;
  gap: 0.45rem;
  margin-top: 1.3rem;
}

.stan-plan-button {
  min-width: 0;
  flex: 1 1 auto;
  max-width: 250px;
  padding: 5px;
}

.stan-pdf-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0.45rem 0.4rem;
  color: #c1a57b;
}

.stan-pdf-badge span {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.stan-pdf-badge img {

  height: 50px;
  margin-top: 10px;
}

@media (max-width: 1199.98px) {
  .stan-meta {
    grid-template-columns: repeat(2, max-content);
  }
}

@media (max-width: 991.98px) {
  .stan-section {
    padding-top: 84px;
  }

  .stan-info {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .stan-section {
    padding-top: 76px;
    padding-bottom: 40px;
  }

  .stan-gallery-arrow {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }

  .stan-gallery-prev {
    left: 10px;
  }

  .stan-gallery-next {
    right: 10px;
  }

  .stan-meta {
    gap: 0.9rem 1rem;
    margin-bottom: 0.8rem;
  }

  .stan-copy p {
    font-size: var(--copy-font-size-sm);
    line-height: var(--copy-line-height-sm);
  }

  .stan-actions {
    margin-top: 1rem;
  }

  .stan-plan-button {
    min-width: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
