/* Reset and base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.6;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  padding: 1rem 15%; /* 162px at 1080px design width */
  background: rgba(45, 90, 39, 1);
  color: rgba(255, 255, 255, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-bottom: 5px solid rgba(224, 165, 3, 1);
}

.logo-link {
  display: block;
  line-height: 0;
}

.logo-header {
  display: block;
  height: auto;
  max-height: 48pt;
  width: auto;
}

nav {
  display: flex;
  gap: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12pt; /* 16px equivalent */
}

nav a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}

nav a:hover {
  color: rgba(224, 165, 3, 1);
}

/* Header right: nav + language switcher */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Language switcher – top right, matches header style */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 12pt;
  font-weight: 500;
}

.lang-btn {
  padding: 0.25rem 0.5rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.lang-btn:hover {
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.08);
}

.lang-btn.active,
.lang-btn[aria-current='true'] {
  color: rgba(224, 165, 3, 1);
  background: rgba(224, 165, 3, 0.15);
}

.lang-sep {
  color: rgba(255, 255, 255, 0.4);
  user-select: none;
  pointer-events: none;
}

/* Mobile menu toggle (hidden on desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
}

.menu-toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 12px;
  right: 12px;
  width: calc(100% - 24px);
  max-width: none;
  min-height: 60vh;
  background: rgba(45, 90, 39, 1);
  z-index: 1001;
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.35s ease-out;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border-radius: 0 0 12px 12px;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1.5rem;
}

.mobile-menu .logo-header {
  max-height: 44px;
}

.mobile-menu-lang {
  margin-bottom: 1rem;
}

.mobile-menu-lang .lang-switcher {
  color: #fff;
}

.mobile-menu-lang .lang-btn {
  color: rgba(255, 255, 255, 0.9);
}

.mobile-menu-lang .lang-btn.active,
.mobile-menu-lang .lang-btn[aria-current='true'] {
  color: rgba(224, 165, 3, 1);
}

.mobile-menu-lang .lang-sep {
  color: rgba(255, 255, 255, 0.45);
}

.menu-close {
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-close-x {
  position: relative;
  width: 24px;
  height: 24px;
}

.menu-close-x::before,
.menu-close-x::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin-left: -12px;
  margin-top: -1px;
}

.menu-close-x::before {
  transform: rotate(45deg);
}

.menu-close-x::after {
  transform: rotate(-45deg);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.mobile-menu-nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  padding: 1rem 0;
  transition: color 0.2s;
}

.mobile-menu-nav a:hover {
  color: rgba(224, 165, 3, 1);
}

.mobile-menu-sep {
  margin-top: auto;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  margin-bottom: -2rem;
  height: 6px;
  background: rgba(224, 165, 3, 1);
  border-radius: 0 0 12px 12px;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

/* Menu open state */
body.menu-open .mobile-menu {
  transform: translateY(0);
}

body.menu-open .mobile-menu-backdrop {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

/* Mobile: show hamburger, hide desktop nav and header lang (lang is in mobile menu) */
@media (max-width: 900px) {
  .header-right {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  header {
    padding: 1rem 1.25rem;
  }
}

/* Hero mobile */
@media (max-width: 900px) {
  .hero {
    min-height: 85vh;
    padding: 2rem 1rem;
  }

  .hero-content {
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .hero-logo {
    max-width: 85%;
  }

  .hero-btn {
    min-width: 140px;
  }
}

/* Hero / landing section */
.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background-image: url('../images/section-one.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-logo {
  max-width: 100%;
  height: auto;
  opacity: 0;
  animation: heroLogoFadeIn 2s ease-out forwards;
}

@keyframes heroLogoFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Hero button – expand starts when logo is fully shown (2s), then text fades in */
.hero-btn {
  width: 10%;
  min-width: 0;
  height: 48px;
  padding: 0 1rem;
  background: rgba(45, 90, 39, 1);
  color: rgba(255, 255, 255, 1);
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12pt;
  white-space: nowrap;
  overflow: hidden;
  animation: heroBtnExpand 0.5s ease-out 1.3s forwards;
  border-radius: 30px;
}

.hero-btn-text {
  opacity: 0;
  animation: heroBtnTextFadeIn 0.4s ease-out 1.8s forwards;
}

@keyframes heroBtnExpand {
  from {
    width: 10%;
  }
  to {
    width: 165px;
  }
}

@keyframes heroBtnTextFadeIn {
  to {
    opacity: 1;
  }
}

/* O nama section */
.o-nama {
  background: rgba(249, 247, 242, 1);
  padding: 4rem 15%;
}

.o-nama-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  transform: translateX(80px);
  opacity: 0;
  transition:
    transform 1.4s ease-out,
    opacity 1.4s ease-out;
}

.o-nama.visible .o-nama-inner {
  transform: translateX(0);
  opacity: 1;
}

.o-nama-media {
  flex: 0 1 auto;
}

.o-nama-img {
  width: 54.07vw; /* 584px at 1080px viewport */
  max-width: 584px;
  height: auto;
  aspect-ratio: 584 / 500; /* 584×500 from Figma */
  display: block;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.49);
}

.o-nama-text {
  flex: 0 1 55%;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.o-nama-title {
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
}

.o-nama-line {
  display: block;
  width: 23.7vw; /* 256px at 1080px viewport */
  max-width: 256px;
  height: 4px;
  background: rgba(224, 165, 3, 1);
  margin-bottom: 1.5rem;
}

.o-nama-paragraph {
  margin: 0 0 1.5rem 0;
  font-size: 12pt;
  line-height: 1.7;
  color: #333;
}

.o-nama-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: rgba(45, 90, 39, 1);
  border: 2px solid rgba(45, 90, 39, 1);
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12pt;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.o-nama-btn:hover {
  background: rgba(45, 90, 39, 1);
  color: #fff;
}

/* Mission & Vision blocks (same section, below O nama) */
.mv-block {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 5rem;
}

.mv-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  opacity: 0;
  transition:
    transform 1.4s ease-out,
    opacity 1.4s ease-out;
}

.mv-block--misija .mv-inner {
  transform: translateX(-80px);
}

.mv-block--vizija .mv-inner {
  transform: translateX(80px);
}

.mv-block.visible .mv-inner {
  transform: translateX(0);
  opacity: 1;
}

.mv-text {
  flex: 1;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.mv-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(45, 90, 39, 1);
}

.mv-paragraph {
  margin: 0;
  font-size: 12pt;
  line-height: 1.7;
  color: #333;
}

.mv-media {
  flex: 0 1 auto;
}

.mv-img {
  width: 54.82vw; /* 592px at 1080px viewport */
  max-width: 555px;
  height: auto;
  aspect-ratio: 592 / 320;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.49);
}

/* O nama + Misija + Vizija – mobile: single column, image on top */
@media (max-width: 900px) {
  .o-nama {
    padding: 2.5rem 1.25rem;
  }

  .o-nama-inner {
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
  }

  .o-nama-media {
    width: 100%;
    order: 1;
  }

  .o-nama-img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
  }

  .o-nama-text {
    width: 100%;
    order: 2;
    text-align: left;
  }

  .o-nama-title {
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .o-nama-line {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.25rem;
  }

  .o-nama-paragraph {
    margin-bottom: 1.25rem;
  }

  .mv-block {
    margin-top: 3rem;
    max-width: 100%;
  }

  .mv-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .mv-block--misija .mv-media {
    order: -1;
  }

  .mv-text,
  .mv-media {
    width: 100%;
  }

  .mv-img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
  }
}

/* Usluge section */
.usluge {
  background: #fff;
  padding: 4rem 15%;
}

.usluge-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.usluge-title {
  margin: 0 0 2.5rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
}

.usluge-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  justify-items: stretch;
}

.usluge-card {
  width: 100%;
  min-width: 0;
  min-height: 200px;
  background: rgba(235, 206, 132, 0.2);
  border: 2px solid rgba(224, 165, 3, 1);
  border-radius: 30px;
  padding: 1.5rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease;
}

.usluge-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.usluge-card-icon {
  display: block;
  width: auto;
  height: 64px;
  max-width: 80px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.usluge-card-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
}

.usluge-card-desc {
  margin: 0;
  font-size: 12pt;
  line-height: 1.5;
  color: #333;
  min-width: 0;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.usluge-info {
  background: rgba(235, 206, 132, 0.2);
  border-radius: 12px;
  padding: 1.5rem 2rem;
}

.usluge-info p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 12pt;
  line-height: 1.7;
  color: #333;
  text-align: center;
}

.usluge-info strong {
  color: rgba(45, 90, 39, 1);
}

/* Usluge – medium screens: 2 columns to avoid overflow */
@media (max-width: 1100px) {
  .usluge-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Usluge – mobile: single column, stacked cards */
@media (max-width: 900px) {
  .usluge {
    padding: 2.5rem 1.25rem;
  }

  .usluge-title {
    margin-bottom: 2rem;
    text-align: center;
  }

  .usluge-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .usluge-card {
    width: 100%;
    max-width: 100%;
    aspect-ratio: auto;
    min-height: 0;
  }

  .usluge-info {
    border-radius: 20px;
    padding: 1.5rem 1.25rem;
    border: 2px solid rgba(224, 165, 3, 1);
  }

  .usluge-info p {
    text-align: left;
  }
}

/* Objekti / Silosi section */
.objekti {
  background: rgba(249, 247, 242, 1);
  padding: 4rem 15%;
}

.objekti-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.objekti-title {
  margin: 0 0 0.25rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
}

.objekti-subtitle {
  margin: 0 0 2.5rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 12pt;
  color: #555;
  text-align: center;
}

.objekti-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  justify-items: stretch;
}

.objekti-card {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 1);
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow:
    0 2px 8px 0 rgba(0, 0, 0, 0.08),
    0 4px 4px 0 rgba(0, 0, 0, 0.25);
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.objekti-card:hover {
  border-color: rgba(224, 165, 3, 1);
  box-shadow:
    0 2px 8px 0 rgba(0, 0, 0, 0.08),
    0 4px 4px 0 rgba(0, 0, 0, 0.25),
    0 0 0 2px rgba(224, 165, 3, 1),
    0 0 24px rgba(224, 165, 3, 0.35);
}

.objekti-card-img {
  width: 100%;
  height: clamp(140px, 22vmin, 256px);
  min-height: 140px;
  object-fit: cover;
  display: block;
  border-radius: 28px 28px 0 0;
  flex-shrink: 0;
}

.objekti-card-body {
  padding: 1.25rem;
  text-align: left;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.objekti-card-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
}

.objekti-capacity {
  display: inline-block;
  background: rgba(45, 90, 39, 1);
  color: #fff;
  padding: 0.35rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: background 0.25s ease;
  width: 100%;
  max-width: 100px;
  text-align: center;
}

.objekti-card:hover .objekti-capacity {
  background: rgba(224, 165, 3, 1);
}

.objekti-address {
  margin: 0 0 0.5rem 0;
  font-size: 12pt;
  color: #555;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.objekti-location-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  object-fit: contain;
}

.objekti-desc {
  margin: 0;
  font-size: 11pt;
  line-height: 1.5;
  color: #333;
}

/* Objekti stats block */
.objekti-stats {
  width: 100%; /* 1216px at 1080px viewport */
  max-width: 1216px;
  min-height: clamp(320px, 50.81vw, 548.72px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  background: rgba(249, 247, 242, 1);
  border-radius: 32px;
  padding: 2rem;
  box-sizing: border-box;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
}

.objekti-stat--circle {
  width: 25.92vw; /* 280px at 1080px viewport */
  height: 25.92vw;
  max-width: 280px;
  max-height: 280px;
  border-radius: 50%;
  border: 5px solid rgba(224, 165, 3, 1);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 20px 50px 0 rgba(45, 90, 39, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.objekti-stat--circle .objekti-stat-value {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 7.4vw, 60pt); /* 80px at 1080p */
  line-height: clamp(2.5rem, 7.4vw, 60pt);
  letter-spacing: -1.5pt; /* -2px */
  color: rgba(45, 90, 39, 1);
  text-align: center;
}

.objekti-stat--circle .objekti-stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13.5pt; /* 18px */
  line-height: 19.5pt; /* 26px */
  letter-spacing: 0.34pt; /* 0.45px */
  text-transform: uppercase;
  text-align: center;
  color: rgba(26, 26, 27, 1);
  padding: 0 0.5rem;
}

.objekti-stats-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex: 1;
  min-width: 0;
}

.objekti-stat-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.objekti-stat-group .objekti-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.objekti-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.objekti-stat-value {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
}

.objekti-stat-value--green {
  color: rgba(45, 90, 39, 1);
  font-size: clamp(1.25rem, 5.4vw, 3.5rem); /* ~58px at 1080p */
  line-height: 1.2;
}

.objekti-stat-label {
  font-size: 0.7rem;
  color: #666;
  margin-top: 0.25rem;
}

.objekti-stat-group .objekti-stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13.5pt; /* 18px */
  line-height: 21pt; /* 28px */
  letter-spacing: 0.34pt; /* 0.45px */
  text-transform: uppercase;
  color: rgba(102, 102, 102, 1);
  margin-top: 0.25rem;
}

.objekti-badges {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  padding-right: 4.2vw; /* 121px at 1080px viewport */
}

.objekti-badge {
  object-fit: contain;
  display: block;
}

/* Objekti – medium screens: 2 columns to avoid overflow */
@media (max-width: 1100px) {
  .objekti {
    padding: 4rem 1.5rem;
  }

  .objekti-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Objekti (Silosi) – mobile: single column cards + stacked stats */
@media (max-width: 900px) {
  .objekti {
    padding: 2.5rem 1.25rem;
  }

  .objekti-inner {
    max-width: 100%;
  }

  .objekti-title {
    margin-bottom: 0.25rem;
  }

  .objekti-subtitle {
    margin-bottom: 2rem;
  }

  .objekti-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-items: stretch;
  }

  .objekti-card {
    width: 100%;
    max-width: 100%;
  }

  .objekti-card-img {
    height: 200px;
    min-height: 200px;
    border-radius: 20px 20px 0 0;
  }

  .objekti-card-body {
    padding: 1.25rem;
    min-height: 0;
  }

  .objekti-stats {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.25rem;
    border-radius: 20px;
  }

  .objekti-stats-right {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1.5rem;
  }

  .objekti-stat-group {
    align-items: center;
    width: 100%;
  }

  .objekti-stat-group .objekti-stat {
    align-items: center;
    text-align: center;
  }

  .objekti-badges {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    padding-right: 0;
    gap: 1rem;
  }
}

/* Vrednosti / feature cards section */
.vrednosti {
  background: rgba(255, 255, 255, 1);
  padding: 4rem 15%;
}

.vrednosti-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2.5rem);
  justify-items: stretch;
}

.vrednosti-card {
  width: 100%;
  min-width: 0;
  min-height: 154px;
  background: rgba(255, 255, 255, 1);
  border-radius: 20px;
  border-top: 3.7px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 1.5rem 1.5rem 1.75rem;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.vrednosti-card:hover {
  transform: translateY(-8px);
}

.vrednosti-card--gold {
  border-top-color: rgba(224, 165, 3, 1);
}

.vrednosti-card--gold:hover {
  box-shadow: 0 12px 32px rgba(224, 165, 3, 0.25);
}

.vrednosti-card--green {
  border-top-color: rgba(45, 90, 39, 1);
}

.vrednosti-card--green:hover {
  box-shadow: 0 12px 32px rgba(45, 90, 39, 0.25);
}

.vrednosti-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.vrednosti-icon {
  object-fit: contain;
}

.vrednosti-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(45, 90, 39, 1);
}

.vrednosti-desc {
  margin: 0;
  font-size: 12pt;
  line-height: 1.5;
  color: #666;
}

/* Vrednosti – medium screens: 2 columns */
@media (max-width: 1100px) {
  .vrednosti {
    padding: 4rem 1.5rem;
  }

  .vrednosti-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Vrednosti – mobile: single column */
@media (max-width: 900px) {
  .vrednosti {
    padding: 2.5rem 1.25rem;
  }

  .vrednosti-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .vrednosti-card {
    width: 100%;
    max-width: 100%;
  }
}

/* Kontakt section */
.kontakt {
  background: rgba(255, 255, 255, 1);
  padding: 4rem 15%;
}

.objekti-stat--circle {
  width: 200px;
  height: 200px;
}

.kontakt-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.kontakt-title {
  margin: 0 0 1.5rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
}

.kontakt-block {
  margin-bottom: 1.5rem;
}

.kontakt-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12pt;
  color: rgba(45, 90, 39, 1);
  margin-bottom: 0.35rem;
}

.kontakt-text {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 12pt;
  line-height: 1.6;
  color: #333;
}

.kontakt-link {
  color: #333;
  text-decoration: none;
}

.kontakt-link:hover {
  color: rgba(45, 90, 39, 1);
  text-decoration: underline;
}

.kontakt-map {
  background: rgba(249, 247, 242, 1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.kontakt-map-link {
  display: block;
  line-height: 0;
  text-decoration: none;
}

.kontakt-map-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

@media (max-width: 768px) {
  .kontakt-inner {
    grid-template-columns: 1fr;
  }
}

/* Main content */

main section h2 {
  margin-top: 0;
}

code {
  background: #f0f0f0;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 3rem 15% 2rem;
  font-family: 'Inter', sans-serif;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 5rem;
}

.footer-brand {
  flex: 0 1 auto;
}

.footer-logo-link {
  display: inline-block;
  line-height: 0;
  margin-bottom: 0.75rem;
}

.footer-logo {
  display: block;
  height: auto;
  max-height: 48px;
  width: auto;
}

.footer-tagline {
  margin: 0;
  font-size: 12pt;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 320px;
}

.footer-links-title {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(224, 165, 3, 1);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 12pt;
}

.footer-nav a:hover {
  color: rgba(224, 165, 3, 1);
}

.footer-sep {
  max-width: 1100px;
  margin: 2rem auto 1.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-copy {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
