/* Otváranie dverí Poprad · reference: organimo, awwards.jpg (editorial trust) */
:root {
  --bg-dark: #111820;
  --bg-light: #f3efe6;
  --panel: rgba(17, 24, 32, .92);
  --line: rgba(255, 255, 255, .1);
  --line-dark: rgba(17, 24, 32, .12);
  --text-dark: #f5f2eb;
  --text-light: #1a1f26;
  --muted-dark: #a8adb5;
  --muted-light: #5c636c;
  --accent: #c9a227;
  --accent-hover: #dbb43a;
  --radius: 18px;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22, .7, .2, 1);
}

* { box-sizing: border-box; }

html {
  margin: 0;
  font-family: var(--font-body);
  scroll-behavior: smooth;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  min-width: 0;
  background: var(--bg-light);
  color: var(--text-light);
  overflow-x: clip;
  overscroll-behavior-y: none;
  padding-bottom: 72px;
}

a { color: inherit; }
img { max-width: 100%; display: block; height: auto; }

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  width: min(1160px, calc(100vw - 20px));
  margin: 12px auto 0;
  min-height: 68px;
  position: sticky;
  top: 10px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(243, 239, 230, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(17, 24, 32, .08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--bg-dark);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: .95rem;
}

.brand-text span {
  font-size: .72rem;
  color: var(--muted-light);
}

.site-nav {
  display: none;
  gap: 18px;
  margin-left: auto;
  font-size: .9rem;
  font-weight: 500;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted-light);
  transition: color .2s var(--ease);
}

.site-nav a:hover { color: var(--text-light); }

.header-call {
  margin-left: auto;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--bg-dark);
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
  white-space: nowrap;
  transition: background .2s var(--ease);
}

.header-call:hover { background: #1c2632; }

.hero {
  width: min(1160px, calc(100vw - 20px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
}

.hero-copy {
  padding: 8px 4px 0;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.band-dark .eyebrow { color: var(--muted-dark); }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  font-weight: 800;
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
}

.hero-lead {
  margin: 18px 0 0;
  max-width: 34ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted-light);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}

.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--accent);
  color: #111820;
}

.btn-primary:hover { background: var(--accent-hover); }

.btn-ghost {
  border-color: var(--line-dark);
  color: var(--text-light);
}

.btn-ghost:hover { border-color: var(--text-light); }

.hero-facts {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: .86rem;
  color: var(--muted-light);
}

.hero-facts strong {
  display: block;
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  margin: 0;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  min-height: 280px;
  background: #ddd8cf;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(17, 24, 32, .82);
  color: var(--text-dark);
  font-size: .82rem;
  font-weight: 600;
}

.band {
  margin-top: 56px;
  padding: 56px 0;
}

.band-dark {
  background: var(--bg-dark);
  color: var(--text-dark);
}

.band-light {
  background: var(--bg-light);
  color: var(--text-light);
}

.section-head,
.service-grid,
.trust-layout,
.step-list,
.contact-grid {
  width: min(1160px, calc(100vw - 20px));
  margin-inline: auto;
}

.section-head { margin-bottom: 28px; }

.service-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-body {
  padding: 18px 18px 22px;
}

.service-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.service-body p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.5;
  font-size: .95rem;
}

.trust-layout {
  display: grid;
  gap: 24px;
}

.trust-copy p {
  margin: 14px 0 0;
  max-width: 48ch;
  line-height: 1.55;
  color: var(--muted-light);
}

.check-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.45;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.quote-card {
  margin: 0;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 24, 32, .06);
}

.quote-card p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.5;
  font-family: var(--font-display);
  font-weight: 600;
}

.quote-card footer {
  margin-top: 14px;
  font-size: .85rem;
  color: var(--muted-light);
}

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.step-list li {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .02);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: .85rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.step-list h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.step-list p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  gap: 24px;
}

.contact-copy p {
  margin: 12px 0 0;
  max-width: 42ch;
  line-height: 1.55;
  color: var(--muted-light);
}

.contact-lines {
  margin: 22px 0;
}

.contact-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  text-decoration: none;
  color: var(--text-light);
  margin-bottom: 10px;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  min-height: 260px;
  background: #e8e3da;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 28px 16px 88px;
  text-align: center;
  font-size: .82rem;
  color: var(--muted-light);
  border-top: 1px solid var(--line-dark);
}

.site-footer a { color: var(--text-light); }

.footer-note { margin: 0 0 6px; }
.footer-legal { margin: 0; opacity: .75; }

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(17, 24, 32, .94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}

.mobile-bar-call {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: var(--accent);
  color: #111820;
  font-weight: 800;
  text-decoration: none;
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .mobile-bar { display: none; }
  .site-footer { padding-bottom: 36px; }
  .site-nav { display: flex; }
  .header-call { margin-left: 0; }

  .hero {
    grid-template-columns: 1.05fr .95fr;
    gap: 32px;
    margin-top: 36px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-visual img { min-height: 520px; }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  .service-card-offset { margin-top: 28px; }

  .trust-layout {
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
  }

  .step-list {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .map-wrap,
  .map-wrap iframe { min-height: 320px; }
}

@media (min-width: 1024px) {
  .band { padding: 72px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
