:root {
  --bg: #f4eadc;
  --paper: rgba(252, 248, 242, 0.78);
  --paper-strong: rgba(255, 251, 246, 0.92);
  --ink: #174847;
  --ink-soft: #4a6863;
  --gold: #bf8845;
  --rust: #b66c45;
  --line: rgba(23, 72, 71, 0.12);
  --shadow: 0 24px 70px rgba(82, 57, 24, 0.18);
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(244, 234, 220, 0.75), rgba(244, 234, 220, 0.58)),
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06)),
    url('assets/world-kultura-hero.png') center center / cover no-repeat fixed;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 18%, rgba(191, 136, 69, 0.17), transparent 26rem),
    radial-gradient(circle at 85% 15%, rgba(23, 72, 71, 0.11), transparent 22rem),
    radial-gradient(circle at 84% 84%, rgba(182, 108, 69, 0.12), transparent 24rem);
}

.hero-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: calc(100vh - 94px);
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 24px 0 8px;
}

.hero-panel {
  width: min(760px, 100%);
  padding: clamp(22px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand-mark img {
  display: block;
  width: min(100%, 410px);
  height: auto;
  margin: 0 0 14px;
  filter: drop-shadow(0 10px 14px rgba(91, 67, 31, 0.08));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.lead {
  max-width: 58ch;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.78;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(191, 136, 69, 0.30);
  background: rgba(191, 136, 69, 0.10);
  color: #86572a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(191, 136, 69, 0.14);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(23, 72, 71, 0.06);
  border: 1px solid rgba(23, 72, 71, 0.09);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, .info-card a:focus-visible { outline: 3px solid rgba(191, 136, 69, 0.35); outline-offset: 4px; }

.button-primary {
  color: #fffdf9;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(23, 72, 71, 0.18);
}
.button-primary:hover { background: #103b3a; }

.button-secondary {
  color: var(--ink);
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(23, 72, 71, 0.14);
}
.button-secondary:hover { background: rgba(255,255,255,0.82); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.info-card {
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--paper-strong);
  border: 1px solid rgba(23, 72, 71, 0.10);
}

.info-card h2 {
  margin: 0 0 6px;
  font-size: 0.82rem;
  color: var(--rust);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-card p {
  margin: 0;
  font-size: 1rem;
}

.info-card a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.info-card a:hover { text-decoration: underline; text-underline-offset: 4px; }

.site-footer {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 0 24px;
  text-align: center;
  color: #6f6a60;
  font-size: 0.82rem;
}
.site-footer p { margin: 5px 0; }
.site-footer strong { color: var(--ink); }

@media (max-width: 900px) {
  body {
    background-attachment: scroll;
    background-position: center top;
  }

  .hero-panel {
    width: 100%;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .hero-shell {
    width: min(100% - 18px, 100%);
    padding-top: 10px;
  }

  .hero-panel {
    padding: 22px 16px;
    border-radius: 24px;
  }

  .brand-mark img {
    width: min(100%, 320px);
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 4rem);
  }

  .lead {
    line-height: 1.7;
  }

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