/* EK Solutions — brand & trust platform
   Brand: Cyan #61CAE6 · Day #2E3690 · Night #161848 · Black #000000 · White #FFFFFF
   Font: Geologica (stredné rezy 300–600)
*/

:root {
  --day: #2e3690;
  --night: #161848;
  --cyan: #61cae6;
  --blue-soft: #c9e8f6;
  --blue-mist: #edf7fb;
  --charcoal: #000000;
  --ink: #000000;
  --ink-2: #161848;
  --stone: #f1f7fb;
  --stone-2: #ddedf6;
  --cream: #ffffff;
  --muted: #50546e;
  --muted-2: #888ca4;
  --white: #ffffff;
  --line: rgba(22, 24, 72, 0.1);
  --line-strong: rgba(22, 24, 72, 0.18);
  --shadow: 0 24px 60px rgba(22, 24, 72, 0.12);
  --nav-h: 76px;
  --radius: 18px;
  --radius-sm: 10px;
  --font: "Geologica", system-ui, sans-serif;
  --display: "Geologica", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.container-wide {
  width: min(1320px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--day);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--day);
}

h1,
h2,
h3,
.display {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--charcoal);
}

.lede {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 42rem;
  overflow-wrap: break-word;
  hyphens: manual;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), background 0.25s, color 0.25s,
    border-color 0.25s, box-shadow 0.35s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--day);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(46, 54, 144, 0.3);
}

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

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn-line:hover {
  border-color: var(--day);
  color: var(--night);
}

.btn-sm {
  height: 42px;
  padding: 0 16px;
  font-size: 13.5px;
}

/* NAV */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 50;
  transition: background 0.35s var(--ease), border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.is-over-hero {
  background: transparent;
  color: var(--white);
}

.nav.is-solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  color: var(--ink);
}

.nav-inner {
  height: 100%;
  width: min(1320px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
  min-width: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
  max-width: 176px;
  object-fit: contain;
  object-position: left center;
}

.nav-logo img.logo-white {
  display: none;
}
.nav-logo img.logo-day {
  display: block;
}
.nav.is-over-hero .nav-logo img.logo-day {
  display: none;
}
.nav.is-over-hero .nav-logo img.logo-white {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  opacity: 0.82;
}

.nav-links a:hover,
.nav-links a.is-active {
  opacity: 1;
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--day);
}

.nav.is-over-hero .nav-links a.is-active::after {
  background: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.02em;
}

.nav.is-over-hero .btn-nav {
  background: var(--white);
  color: var(--charcoal);
}

.nav.is-solid .btn-nav {
  background: var(--day);
  color: var(--white);
}

.burger {
  display: block;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 16px;
  right: 14px;
  z-index: 60;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border: 1px solid rgba(22, 24, 72, 0.18);
}

.burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: currentColor;
  transition: 0.25s var(--ease);
}

.burger span:nth-child(1) {
  top: 15px;
}
.burger span:nth-child(2) {
  top: 21px;
}
.burger span:nth-child(3) {
  top: 27px;
}

.burger.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--cream);
  z-index: 49;
  padding: 28px 24px;
  flex-direction: column;
  gap: 18px;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 600;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a.btn {
  font-family: var(--font);
  font-size: 15px;
  margin-top: 8px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s linear;
}

.hero-slide.is-on {
  opacity: 1;
}

.hero-slide.is-on img {
  transform: scale(1);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 40, 0.55) 0%, rgba(10, 12, 40, 0.18) 34%, rgba(10, 12, 40, 0.72) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 72px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.hero-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #61cae6;
  box-shadow: 0 0 0 4px rgba(97, 202, 230, 0.25);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5.4vw, 4.6rem);
  max-width: min(16ch, 100%);
  margin-bottom: 16px;
  overflow-wrap: break-word;
}

.hero .hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.hero-dots {
  position: absolute;
  right: max(20px, calc((100% - 1320px) / 2));
  bottom: 36px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-dots button.is-on {
  width: 26px;
  background: var(--white);
}

/* TRUST */
.trust {
  background: var(--night);
  color: rgba(255, 255, 255, 0.82);
  padding: 22px 0;
}

.trust-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-row span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}

/* SECTIONS */
.section {
  padding: 96px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  max-width: 16ch;
}

.section.alt {
  background: var(--stone);
}

/* Category cards */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cat-card {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.cat-card:hover img {
  transform: scale(1.06);
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 40, 0.05), rgba(10, 12, 40, 0.78));
}

.cat-card .body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  z-index: 1;
}

.cat-card h3 {
  color: var(--white);
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.cat-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.why-photo {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 460px;
}

.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 460px;
}

.why-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.why-item h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.why-item p {
  color: var(--muted);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  min-height: 210px;
}

.process-card .num {
  font-family: var(--display);
  font-size: 0.9rem;
  color: var(--day);
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.process-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* Projects */
.proj-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

.proj-grid .proj-card:first-child {
  grid-row: span 2;
  min-height: 560px;
}

.proj-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 270px;
  color: var(--white);
  isolation: isolate;
  display: block;
}

.proj-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.proj-card:hover img {
  transform: scale(1.05);
}

.proj-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 12, 40, 0.82));
}

.proj-card .body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  z-index: 1;
}

.proj-card .tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
  color: #a8def2;
}

.proj-card h3 {
  color: var(--white);
  font-size: 1.5rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-btn {
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-weight: 600;
  font-size: 13.5px;
  background: transparent;
}

.filter-btn.is-on {
  background: var(--day);
  color: var(--white);
  border-color: var(--day);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.gallery-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: block;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.gallery-card .thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card .pad {
  padding: 20px 22px 24px;
}

.gallery-card .meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--day);
  margin-bottom: 8px;
}

.gallery-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.gallery-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-card.is-hidden {
  display: none;
}

/* CTA band */
.cta-band {
  background: var(--day);
  color: var(--white);
  padding: 72px 0;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 10px 0 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
  margin-bottom: 28px;
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--night);
  box-shadow: none;
}

/* Footer */
.footer {
  background: var(--night);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 34px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--display);
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Page hero */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 56px;
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(97, 202, 230, 0.22), transparent 50%),
    var(--stone);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  max-width: min(16ch, 100%);
  margin: 10px 0 14px;
}

/* Services */
.service-block {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.service-block:last-child {
  border-bottom: 0;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

.service-photo {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
}

.service-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.service-copy ul {
  margin: 18px 0 24px;
  display: grid;
  gap: 8px;
}

.service-copy li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.service-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--day);
}

/* Project detail */
.project-hero {
  padding-top: var(--nav-h);
}

.project-hero img {
  width: 100%;
  height: min(72vh, 720px);
  object-fit: cover;
}

.project-intro {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 48px;
  padding: 56px 0 24px;
}

.facts {
  background: var(--stone);
  border-radius: var(--radius);
  padding: 24px;
}

.facts li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}

.facts li span {
  color: var(--muted);
}

.facts li strong {
  text-align: right;
}

.story {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 56px;
}

.story article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.story h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.story p {
  color: var(--muted);
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-bottom: 72px;
}

.thumbs button {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 32, 0.94);
  z-index: 80;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox .close {
  position: absolute;
  top: 18px;
  right: 22px;
  color: var(--white);
  font-size: 28px;
}

/* Form */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.contact-card,
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-card a.big {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 8px 0 18px;
}

.map {
  margin-top: 18px;
  border-radius: 12px;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--line);
}

.map iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

input,
select,
textarea {
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  padding: 0 12px;
}

textarea {
  height: 120px;
  padding: 12px;
  resize: vertical;
}

.gdpr {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  color: var(--muted);
  font-size: 13.5px;
}

.gdpr input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-ok,
.form-err {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
}

.form-ok {
  background: var(--blue-mist);
  color: var(--night);
}

.form-err {
  background: #f8e6e4;
  color: #7a2e27;
}

/* Cookie */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  background: var(--night);
  color: rgba(255, 255, 255, 0.86);
  padding: 16px 18px;
  border-radius: 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow);
}

.cookie.open {
  display: flex;
}

.cookie p {
  font-size: 13.5px;
  overflow-wrap: break-word;
}

.cookie a {
  text-decoration: underline;
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s var(--ease) forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.08s;
}
.reveal:nth-child(3) {
  animation-delay: 0.16s;
}
.reveal:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.legal {
  padding: 48px 0 96px;
  max-width: 760px;
}

.legal h2 {
  font-size: 1.3rem;
  margin: 28px 0 10px;
}

.legal p,
.legal li {
  color: var(--muted);
  margin-bottom: 10px;
}

@media (min-width: 981px) {
  .burger {
    display: none;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .nav-links,
  .nav-phone,
  .nav .btn-nav {
    display: none !important;
  }
  .nav-actions {
    gap: 0;
  }
  .cat-grid,
  .process-grid,
  .story,
  .values,
  .footer-grid,
  .why-grid,
  .contact-grid,
  .project-intro,
  .service-block,
  .service-block.reverse,
  .gallery-grid,
  .form-grid,
  .thumbs {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .proj-grid {
    grid-template-columns: 1fr;
  }
  .proj-grid .proj-card:first-child {
    grid-row: auto;
    min-height: 360px;
  }
  .section-head {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    margin-bottom: 56px;
  }
  .section {
    padding: 72px 0;
  }
  .cookie {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    max-width: 100%;
    font-size: 2rem;
    overflow-wrap: break-word;
  }
  .page-hero h1 {
    max-width: 100%;
  }
  .trust-row {
    justify-content: flex-start;
  }
  .hero-cta,
  .cta-band .btn,
  .form-card .btn,
  .service-copy .btn {
    width: 100%;
  }
  .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .cookie {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 14px;
  }
}

/* ---- Spacing: viac vzduchu medzi nadpismi a textom ---- */
.eyebrow {
  margin-bottom: 14px;
}

.hero h1 {
  margin-bottom: 22px;
}

.page-hero h1 {
  margin: 14px 0 18px;
}

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

/* sluzby: bloky sluzieb */
.service-block {
  padding: 64px 0;
}

.service-copy h2 {
  margin-bottom: 16px;
}

.service-copy ul {
  margin: 22px 0 28px;
  gap: 10px;
}

/* karty a zoznamy: nadpis dalej od textu */
.why-item h3,
.process-card h3 {
  margin-bottom: 12px;
}

.value h3,
.story h3 {
  margin-bottom: 16px;
}

.why-list {
  gap: 26px;
  margin-top: 34px;
}

.cat-card h3,
.gallery-card h3 {
  margin-bottom: 10px;
}

.values {
  gap: 20px;
}

.value {
  padding: 30px 28px;
}

/* odseky v pribehu dalej od seba */
.story p + p,
.service-copy .lede + p {
  margin-top: 14px;
}

.why-grid h2 + .lede {
  margin-top: 18px;
}

/* ================= Nové komponenty (2026 redesign) ================= */

/* Čísla / dôveryhodnosť */
.stats-band {
  background: var(--night);
  color: var(--white);
  padding: 46px 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.stat {
  border-left: 2px solid var(--cyan);
  padding-left: 16px;
}

.stat-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 8px;
}

.stat p {
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

/* Vybrané spolupráce */
.partners {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
}

.partner {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.partner img {
  max-height: 62px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Galéria realizácií */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.work-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--stone);
  color: var(--white);
  text-align: left;
  isolation: isolate;
}

.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.work-card:hover img {
  transform: scale(1.05);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(10, 12, 40, 0.82));
}

.work-body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 18px 20px;
  display: block;
}

.work-card .tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #a8def2;
  margin-bottom: 6px;
}

.work-cap {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1.3;
  color: var(--white);
}

.work-card.is-hidden {
  display: none;
}

.work-card:not(.is-static) {
  cursor: zoom-in;
}

.work-card:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

/* Doladenie */
.section-head .lede {
  margin-top: 14px;
}

@media (max-width: 1080px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .partners {
    grid-template-columns: repeat(3, 1fr);
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .partners {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .partner {
    min-height: 92px;
    padding: 12px;
  }
  .partner img {
    max-height: 48px;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
}
