:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #eef2f8;
  --text: #162033;
  --muted: #5c677c;
  --line: #dbe2ee;
  --primary: #17345f;
  --primary-2: #214b88;
  --accent: #b48a3b;
  --shadow: 0 18px 40px rgba(13, 30, 61, 0.08);
  --radius: 18px;
  --wrap: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(calc(100% - 32px), var(--wrap)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(219,226,238,0.9);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 14px 0;
}
.brand { display: flex; gap: 14px; align-items: center; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; display:flex; align-items:center; justify-content:center;
  font-weight: 700; letter-spacing: 0.06em;
  box-shadow: var(--shadow);
}
.brand-title { font-weight: 700; line-height: 1.2; }
.brand-subtitle { color: var(--muted); font-size: 14px; }
.nav { display:flex; align-items:center; gap: 18px; flex-wrap: wrap; }
.nav a { color: var(--primary); font-weight: 600; }
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  min-height: 46px; padding: 0 18px; border-radius: 12px;
  font-weight: 700; transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-nav, .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: var(--surface);
  color: var(--primary);
  border: 1px solid var(--line);
}
.hero {
  padding: 48px 0 34px;
  background:
    radial-gradient(circle at top left, rgba(180,138,59,0.12), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f9 100%);
}
.hero-grid {
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items:center;
}
.eyebrow {
  margin: 0 0 8px; text-transform: uppercase; letter-spacing: .12em;
  font-size: 12px; font-weight: 700; color: var(--accent);
}
.eyebrow.light { color: #d9c08a; }
.hero h1 {
  margin: 0 0 14px; font-size: clamp(34px, 5vw, 54px); line-height: 1.08;
}
.lead { font-size: 18px; color: var(--muted); max-width: 58ch; }
.hero-actions { display:flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 18px; }
.hero-list {
  margin: 0; padding-left: 20px; color: var(--muted);
}
.hero-media img {
  width: 100%; border-radius: 24px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.8);
}
.section { padding: 28px 0; }
.alt { background: transparent; }
.two-col, .three-col, .contact-grid {
  display:grid; gap: 22px;
}
.two-col { grid-template-columns: 1fr 1fr; }
.three-col { grid-template-columns: repeat(3, 1fr); }
.card, .contact-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.card h2, .contact-card h3 { margin-top: 0; line-height: 1.2; }
.data-list { margin: 0; }
.data-list > div {
  display:grid; grid-template-columns: 180px 1fr; gap: 10px; padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.data-list > div:last-child { border-bottom: 0; }
dt { font-weight: 700; }
dd { margin: 0; color: var(--muted); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  padding: 12px 0; border-bottom: 1px solid var(--line); text-align: left;
}
.hours-table th { width: 45%; }
.note { color: var(--muted); }
.contact-section {
  margin-top: 16px;
  background: linear-gradient(135deg, #132a4a, #1c3f6d);
  color: #fff;
}
.contact-grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
.contact-copy h2 { margin-top: 0; font-size: clamp(28px, 4vw, 42px); line-height: 1.1; }
.contact-copy p { color: rgba(255,255,255,0.9); }
.contact-actions { display:flex; gap: 12px; flex-wrap:wrap; margin-top: 20px; }
.btn-light {
  background: #fff; color: var(--primary);
}
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.4); color: #fff;
}
.contact-card {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15);
  color: #fff;
}
.footer {
  background: #0d1b30; color: rgba(255,255,255,0.75);
  padding: 18px 0;
}
.footer-inner {
  display:flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
@media (max-width: 960px) {
  .hero-grid, .two-col, .three-col, .contact-grid { grid-template-columns: 1fr; }
  .topbar-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  .wrap { width: min(calc(100% - 24px), var(--wrap)); }
  .nav { gap: 12px; }
  .data-list > div { grid-template-columns: 1fr; }
  .card, .contact-card { padding: 20px; }
}


/* poprawki v2 */
.nav a.btn-nav {
  color: #fff;
}
.nav a.btn-nav:hover {
  color: #fff;
}
.hero-media {
  align-self: stretch;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.8);
}
.download-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.download-item {
  display: block;
  padding: 16px 18px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.download-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
}
.download-item span {
  color: var(--muted);
  font-size: 14px;
}
.download-item:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.doc-notes {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}
.doc-notes li + li {
  margin-top: 10px;
}
