:root {
  --stone: #2d2924;
  --ink: #1b1713;
  --muted: #70665b;
  --paper: #fbf6ed;
  --sand: #d6b06a;
  --gold: #b7812d;
  --sea: #1d6374;
  --line: rgba(45, 41, 36, .16);
  --shadow: 0 28px 70px rgba(39, 31, 22, .22);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(251, 246, 237, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
}

.logo span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--stone);
  color: var(--sand);
  font-size: 13px;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  font-weight: 800;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover { color: var(--gold); }

.language {
  display: inline-flex;
  padding: 3px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 8px 10px;
  font-weight: 900;
  cursor: pointer;
}

.language .active {
  background: var(--stone);
  color: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 86px);
  overflow: hidden;
  color: #fff;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(18, 14, 9, .82), rgba(18, 14, 9, .42) 48%, rgba(18, 14, 9, .08)), url("images/vintage-dizajn1.jpg");
  background-size: 108% auto;
  background-position: left top;
  background-repeat: no-repeat;
  background-color: #211b14;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--sand);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: .95;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(58px, 8vw, 116px);
}

h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 72px);
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.hero-content p:not(.kicker) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
}

.btn.primary {
  background: var(--sand);
  color: var(--ink);
}

.btn.ghost {
  border: 1px solid rgba(255,255,255,.34);
  color: #fff;
  background: rgba(255,255,255,.1);
}

.status-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 36px;
  z-index: 2;
  width: min(350px, calc(100vw - 36px));
  padding: 22px;
  border-radius: 8px;
  background: rgba(251, 246, 237, .96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.status-card span, .status-card strong, .status-card small { display: block; }
.status-card span { color: var(--gold); font-weight: 900; }
.status-card strong { font-family: "Playfair Display", Georgia, serif; font-size: 36px; margin: 5px 0; }
.status-card small { color: var(--muted); line-height: 1.45; }

.split, .section, .program {
  padding: clamp(60px, 9vw, 118px) clamp(20px, 6vw, 86px);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
}

.text-block p, .program p, .visit-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.facts div {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.facts strong, .facts span { display: block; }
.facts strong { font-family: "Playfair Display", Georgia, serif; font-size: 36px; color: var(--sea); }
.facts span { color: var(--muted); font-size: 13px; font-weight: 700; }

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 10px;
  padding: 0 clamp(20px, 6vw, 86px) clamp(60px, 8vw, 100px);
}

.gallery figure {
  margin: 0;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
}

.gallery .wide {
  grid-row: span 2;
}

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

.gallery .wide img { object-position: left top; }

.section-head {
  max-width: 900px;
  margin-bottom: 36px;
}

.offer {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.offer-grid article {
  min-height: 245px;
  padding: 24px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.offer-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--stone);
  color: var(--sand);
  font-weight: 900;
}

article p {
  color: var(--muted);
  line-height: 1.62;
}

.program {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, .9fr);
  gap: clamp(28px, 6vw, 78px);
  color: #fff;
  background: linear-gradient(135deg, #2d2924, #705127);
}

.program p { color: rgba(255,255,255,.82); }

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.visit-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.visit-card strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}

.visit-card span { color: var(--muted); }
.visit-card a { color: var(--sea); font-weight: 900; }

footer {
  padding: 28px clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer p { margin: 0; }

@media (max-width: 980px) {
  .topbar { grid-template-columns: auto auto; }
  nav { grid-column: 1 / -1; justify-content: flex-start; overflow-x: auto; }
  .hero { min-height: auto; padding-bottom: 220px; }
  .hero-image { background-position: 30% top; }
  .split, .program, .visit { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .wide { grid-column: 1 / -1; min-height: 420px; }
}

@media (max-width: 640px) {
  .topbar { padding: 12px 14px; gap: 12px; }
  .logo strong { font-size: 14px; }
  nav { gap: 16px; font-size: 13px; }
  h1 { font-size: 56px; }
  h2 { font-size: 38px; }
  .hero { padding: 58px 18px 230px; }
  .status-card { left: 18px; right: 18px; bottom: 24px; }
  .facts, .offer-grid, .gallery { grid-template-columns: 1fr; }
  .gallery .wide { min-height: 330px; }
}
