:root {
  --bg: #0b1220;
  --bg-soft: #10192c;
  --panel: rgba(12, 22, 37, 0.82);
  --panel-strong: rgba(22, 39, 61, 0.94);
  --text: #f4efe5;
  --muted: #d6d1c6;
  --accent: #f5bf55;
  --accent-deep: #d27b43;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(41, 90, 153, 0.35), transparent 28%),
    radial-gradient(circle at top right, rgba(212, 123, 67, 0.28), transparent 24%),
    linear-gradient(180deg, #08101b 0%, #0c1830 50%, #111d31 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(rgba(8, 14, 23, 0.54), rgba(8, 14, 23, 0.82)), url("assets/hero/pozadi1.jpg") center/cover;
  opacity: 0.15;
  pointer-events: none;
}
.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 64px;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 14, 23, 0.76);
  backdrop-filter: blur(14px);
}
.brand, .nav-links a, .contact-card a {
  color: inherit;
  text-decoration: none;
}
.brand {
  font-family: "Palatino Linotype", Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.nav-links a {
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}
.nav-links a:hover, .nav-links a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}
.language-switcher {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}
.language-button {
  min-width: 48px;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
}
.language-button.is-active {
  background: linear-gradient(135deg, rgba(245, 191, 85, 0.22), rgba(210, 123, 67, 0.24));
  color: var(--text);
}
.hero { padding: 22px 0 24px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: 56px 0 24px;
}
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: #f6d899;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Palatino Linotype", Georgia, serif;
  line-height: 1.08;
}
h1 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  max-width: 14ch;
}
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.panel p, .collection-summary, .contact-panel p, .news-card p, .lightbox-copy p {
  color: var(--muted);
  line-height: 1.7;
}
.hero-card, .panel, .contact-card, .gallery-card, .news-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card img, .gallery-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.hero-card img {
  aspect-ratio: 4 / 4.7;
}
.hero-card-copy, .panel, .contact-card, .gallery-card .card-copy, .news-card {
  padding: 22px;
}
.hero-card-date {
  margin: 0 0 8px;
  color: #f6d899;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}
.section { padding: 42px 0; }
.intro-panels, .gallery-grid, .news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.panel-single {
  grid-column: 1 / -1;
}
.panel-highlight {
  background: linear-gradient(145deg, rgba(245, 191, 85, 0.12), rgba(255, 255, 255, 0.03)), var(--panel-strong);
}
.quote-band {
  margin: 8px 0 18px;
  padding: 26px 30px;
  border-top: 1px solid rgba(245, 191, 85, 0.35);
  border-bottom: 1px solid rgba(245, 191, 85, 0.35);
}
.quote-band p {
  margin: 0;
  font-family: "Palatino Linotype", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: #f9e9c0;
  line-height: 1.55;
}
.section-heading {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin-bottom: 24px;
}
.cards-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
}
.cards-stack {
  display: grid;
  gap: 24px;
}
.cards-main,
.cards-side-panel {
  display: grid;
  gap: 14px;
}
.cards-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.cards-price-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 270px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}
.cards-price-chip:first-child {
  background: rgba(245, 191, 85, 0.16);
  color: #f7d991;
}
.cards-side-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(245, 191, 85, 0.08));
}
.collection-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.collection-tab {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
}
.collection-tab.is-active {
  background: linear-gradient(135deg, rgba(245, 191, 85, 0.22), rgba(210, 123, 67, 0.24));
  color: var(--text);
}
.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-card, .news-card {
  transition: transform 180ms ease, border-color 180ms ease;
}
.gallery-card:hover, .gallery-card:focus-visible, .news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 191, 85, 0.45);
}
.gallery-card {
  cursor: pointer;
}
.gallery-card img {
  aspect-ratio: 1 / 1;
}
.gallery-card h3, .news-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.price-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(245, 191, 85, 0.16);
  color: #f7d991;
  font-size: 0.92rem;
  font-weight: 700;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}
.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.news-date {
  margin: 0 0 10px;
  color: #f6d899;
  font-size: 0.88rem;
}
.empty-state {
  margin: 18px 0 0;
  color: var(--muted);
}
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}
.contact-card {
  display: grid;
  gap: 14px;
  background: linear-gradient(160deg, rgba(245, 191, 85, 0.12), rgba(255, 255, 255, 0.02)), var(--panel-strong);
}
.lightbox {
  width: min(1000px, calc(100% - 24px));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 20px;
  background: rgba(5, 10, 18, 0.96);
  color: var(--text);
}
.lightbox::backdrop { background: rgba(2, 4, 8, 0.8); }
.lightbox img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}
.lightbox-copy { padding-top: 18px; }
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 1.8rem;
}
@media (max-width: 960px) {
  .hero-grid, .intro-panels, .cards-grid, .gallery-grid, .news-grid, .contact-panel {
    grid-template-columns: 1fr;
  }
  .topbar {
    border-radius: 28px;
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .page-shell { width: min(100% - 20px, 1180px); }
  .hero-grid { padding-top: 28px; }
  h1 { max-width: none; }
  .quote-band { padding: 22px 18px; }
  .hero-card-copy, .panel, .contact-card, .gallery-card .card-copy, .news-card { padding: 18px; }
  .cards-price-chip {
    min-width: 100%;
  }
}
