/* ─── Custom cursor ─── */
body { cursor: none; }
* { cursor: none !important; }

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .18s var(--ease), height .18s var(--ease);
  will-change: transform;
}
.cursor-dot.active { width: 5px; height: 5px; }

.cursor-pill {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  background: rgba(8, 9, 12, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-white);
  white-space: nowrap;
  opacity: 0;
  transform: translate(14px, -50%) scale(0.84);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
  will-change: transform, opacity;
}
.cursor-pill.visible { opacity: 1; transform: translate(18px, -50%) scale(1); }
.cursor-pill__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #E8F4F8;
  flex-shrink: 0;
}

/* ─── Navigation — floating pill ─── */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 2.5rem);
  max-width: 900px;
  height: 52px;
  background: rgba(13, 16, 24, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top-color: rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}
.nav.scrolled {
  background: rgba(8, 9, 12, 0.72);
  border-color: rgba(255, 255, 255, 0.16);
  border-top-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
/* override container inside nav */
.nav .container {
  max-width: none;
  padding-inline: var(--space-4);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
/* Center links absolutely between logo and button */
.nav__logo {
  font-family: var(--font-head);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--clr-white);
  letter-spacing: -0.01em;
}
.nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  white-space: nowrap;
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--clr-dim);
  transition: color var(--duration) var(--ease);
}
.nav__links a:hover { color: var(--clr-white); }

.nav-btn {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--clr-bg);
  background: var(--clr-white);
  padding: 7px 18px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}
.nav-btn:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* ─── Hamburger button ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 6px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
  pointer-events: none;
}

@media (max-width: 680px) {
  .nav { width: calc(100% - 1.5rem); }
  .nav__links { display: none; }
  .nav-btn    { display: none; }
  .nav-hamburger { display: flex; }
}

/* ─── Mobile menu overlay ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--clr-bg);
  display: flex;
  flex-direction: column;
  padding: 0 var(--space-6) var(--space-8);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--clr-border);
}
.mobile-menu__logo {
  font-family: var(--font-head);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--clr-white);
  letter-spacing: -0.01em;
}
.mobile-menu__close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-h);
  color: var(--clr-white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: var(--space-3);
}
.mobile-menu__nav a {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 10vw, 3rem);
  font-weight: 500;
  color: var(--clr-white);
  letter-spacing: -0.025em;
  line-height: 1.15;
  transition: color var(--duration) var(--ease);
  text-align: center;
}
.mobile-menu__nav a:hover { color: var(--clr-dim); }
.mobile-menu__cta-wrap {
  flex-shrink: 0;
}
.mobile-menu__cta {
  display: block;
  text-align: center;
  background: var(--clr-white);
  color: var(--clr-bg);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  padding: 15px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  transition: background var(--duration) var(--ease);
}
.mobile-menu__cta:hover { background: #fff; }

/* ─── Back link ─── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--clr-dim);
  transition: color var(--duration) var(--ease);
}
.back-link svg { transition: transform var(--duration) var(--ease); }
.back-link:hover { color: var(--clr-white); }
.back-link:hover svg { transform: translateX(-3px); }

/* ─── Hero — split screen ─── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: 100dvh;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: var(--nav-h);
  padding-bottom: var(--space-6);
  overflow: hidden;
  gap: var(--space-6);
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-inline: var(--space-4);
    padding-top: calc(var(--nav-h) + var(--space-2));
    padding-bottom: var(--space-4);
  }
  .hero__left { min-height: auto; padding-top: var(--space-2); padding-bottom: var(--space-2); }
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: var(--space-10);
  min-height: calc(78dvh - var(--nav-h));
}
.hero__top { flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; width: 100%; min-width: 0; }

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--clr-dim);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-6);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  width: fit-content;
}
.hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(232, 244, 248, 0.85);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(232, 244, 248, 0.5);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 5px rgba(232,244,248,0.4); }
  50%       { box-shadow: 0 0 12px rgba(232,244,248,0.8); }
}

.hero__name {
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--clr-white);
  line-height: 1.05;
  margin-bottom: var(--space-6);
}
.hero__desc {
  font-size: var(--text-base);
  color: var(--clr-muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: var(--space-8);
}
/* ─── Scroll hint ─── */
.scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  .scroll-hint {
    position: static;
    transform: none;
    left: auto;
    bottom: auto;
    padding-block: var(--space-4);
  }
}
.scroll-hint__mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-hint__wheel {
  width: 3px;
  height: 7px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  animation: scroll-wheel 1.8s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ─── Hero bubbles ─── */
.hero-bubbles {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-8);
}
.hero-bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border-h);
  border-radius: var(--radius-sm);
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-sm);
  color: var(--clr-muted);
  line-height: 1.65;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.hero-bubble:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--clr-border);
}
.hero-link {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-muted);
  transition: color var(--duration) var(--ease);
}
.hero-link:hover { color: var(--clr-white); }
.hero-link__num {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--clr-dim);
  min-width: 22px;
  transition: color var(--duration) var(--ease);
}
.hero-link:hover .hero-link__num { color: var(--clr-muted); }
.hero-link__label {
  flex: 1;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-link__arr {
  font-size: var(--text-sm);
  color: var(--clr-dim);
  transition: transform var(--duration) var(--ease), color var(--duration) var(--ease);
}
.hero-link:hover .hero-link__arr {
  transform: translateX(4px);
  color: var(--clr-white);
}

.hero__right {
  position: relative;
  background: var(--clr-surface);
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  max-height: calc(78dvh - var(--nav-h) - var(--space-6));
}
.hero__right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) brightness(0.88);
  transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
}
.hero__right:hover img {
  transform: scale(1.03);
  filter: grayscale(0%) brightness(1);
}
@media (max-width: 900px) {
  .hero__right { min-height: 50vw; max-height: 55vw; }
  .hero__right--portrait { min-height: auto; max-height: none; height: auto; display: flex; justify-content: center; }
  .hero__right--portrait img { object-fit: unset; width: 55%; height: auto; max-height: none; border-radius: var(--radius-md); }
}

/* ─── Section heading — centered stack ─── */
.sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  padding-bottom: var(--space-10);
}
.sec-head h2 { font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl)); }

/* ─── Section intro text — centered ─── */
.sec-intro {
  font-size: var(--text-base);
  color: var(--clr-muted);
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.75;
}

/* ─── Numbered rows — single row ─── */
.rows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-3);
}
.rows--span-last {
  grid-template-columns: repeat(2, 1fr);
}
.rows--span-last .row-item:last-child {
  grid-column: 1 / -1;
}
/* white (default) */
.row-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  padding: var(--space-10) var(--space-8);
  background: rgba(232, 244, 248, 0.92);
  border: 1px solid rgba(232, 244, 248, 0.15);
  border-radius: var(--radius-md);
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
}
.row-item:hover {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.row-num {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(8, 9, 12, 0.4);
}
.row-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.row-body h3 {
  font-size: var(--text-2xl);
  font-weight: 500;
  color: #08090C;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}
.row-body p {
  font-size: var(--text-lg);
  max-width: 380px;
  color: rgba(8, 9, 12, 0.65);
  margin-inline: auto;
  line-height: 1.6;
}

/* dark variant */
.rows--dark .row-item {
  background: var(--clr-surface);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.rows--dark .row-item:hover {
  background: var(--clr-surface2);
  border-color: rgba(255, 255, 255, 0.28);
}
.rows--dark .row-num { color: var(--clr-dim); }
.rows--dark .row-body h3 { color: var(--clr-white); }
.rows--dark .row-body p { color: var(--clr-muted); }
.row-arr { display: none; }

@media (max-width: 600px) {
  /* Hero bubliny — menšie, všetky 3 viditeľné */
  .hero-bubbles { gap: var(--space-2); margin-top: var(--space-4); }
  .hero-bubble { padding: var(--space-3) var(--space-4); font-size: var(--text-sm); }
  .hero__name { font-size: clamp(1.6rem, 7vw, 2rem); }


  /* Row karty — zmenšiť text, zostať čitateľné */
  .rows { grid-template-columns: 1fr; }
  .rows--span-last { grid-template-columns: 1fr; }
  .rows--span-last .row-item:last-child { grid-column: auto; }
  .rows--dark {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: var(--space-3);
    touch-action: pan-x;
  }
  .rows--dark::-webkit-scrollbar { display: none; }
  .rows--dark .row-item {
    flex: 0 0 72vw;
    scroll-snap-align: start;
  }
  .row-item { padding: var(--space-6) var(--space-4); gap: var(--space-2); }
  .row-body h3 { font-size: var(--text-lg); }
  .row-body p { font-size: var(--text-sm); display: block; }
}

/* ─── Two-col content block ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.split > div { text-align: center; }
.split > div p { margin-inline: auto; text-align: center; }
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; gap: var(--space-10); }
}

/* ─── Photo frame ─── */
.photo-frame {
  overflow: hidden;
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(15%) brightness(0.9);
  transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
  display: block;
}
.photo-frame:hover img {
  transform: scale(1.03);
  filter: grayscale(0%) brightness(1);
}
.photo-frame--portrait { aspect-ratio: 3/4; }
.photo-frame--square   { aspect-ratio: 1; }
.photo-frame--wide     { aspect-ratio: 16/9; }

/* ─── Statement — card ─── */
.statement { padding-block: var(--space-16); }
.statement .container {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-16) var(--space-12);
  position: relative;
  overflow: hidden;
}
.statement .container::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(220, 230, 255, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 80% 10%, rgba(200, 210, 240, 0.06) 0%, transparent 55%);
  pointer-events: none;
}
.statement__text {
  font-family: var(--font-head);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 500;
  color: var(--clr-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 800px;
  position: relative;
}
.statement__text em {
  font-style: italic;
  font-weight: 400;
  color: var(--clr-muted);
}

/* ─── Stats — card wrapper ─── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--clr-surface);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  padding: var(--space-10) var(--space-8);
  border-right: 1px solid var(--clr-border);
}
.stat:last-child { border-right: none; }
.stat__value {
  font-family: var(--font-head);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 500;
  color: var(--clr-white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat__value sup {
  font-size: 0.45em;
  color: var(--clr-dim);
  vertical-align: super;
  letter-spacing: 0;
}
.stat__label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-dim);
}
@media (max-width: 600px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1),
  .stat:nth-child(2) { border-bottom: 1px solid var(--clr-border); }
}

/* ─── Services grid — bento cards ─── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-12);
}
.svc-card {
  background: rgba(232, 244, 248, 0.92);
  border: 1px solid rgba(232, 244, 248, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}
.svc-card:hover {
  background: #fff;
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.svc-card__num {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(8, 9, 12, 0.4);
  margin-bottom: var(--space-6);
}
.svc-card h3 {
  font-size: var(--text-lg);
  font-weight: 500;
  color: #08090C;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.svc-card p {
  font-size: var(--text-base);
  color: rgba(8, 9, 12, 0.65);
  max-width: none;
  line-height: 1.6;
}
@media (max-width: 768px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: unset;
    gap: var(--space-3);
    padding-bottom: 0;
    margin-inline: 0;
    padding-inline: 0;
  }
  .svc-card {
    flex: unset;
    scroll-snap-align: unset;
  }
}

/* ─── CTA section — big type ─── */
.cta-sec {
  padding-block: var(--space-24);
  border-top: 1px solid var(--clr-border);
}
.cta-sec__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-8);
}
.cta-sec__heading {
  font-family: var(--font-head);
  font-size: clamp(var(--text-4xl), 8.5vw, 6.5rem);
  font-weight: 500;
  color: var(--clr-white);
  letter-spacing: -0.03em;
  line-height: 1.0;
  max-width: none;
}
.cta-sec__heading .cta-arrow {
  color: var(--clr-dim);
  margin-left: 0.15em;
  display: inline-block;
  transition: transform var(--duration) var(--ease), color var(--duration) var(--ease);
}
.cta-sec__heading:hover .cta-arrow {
  transform: translate(6px, -4px);
  color: var(--clr-white);
}
.cta-sec__sub {
  font-size: var(--text-lg);
  color: var(--clr-dim);
  max-width: 520px;
  line-height: 1.7;
}
.cta-sec__links {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin-top: var(--space-4);
}
.cta-sec__link {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-dim);
  transition: color var(--duration) var(--ease);
}
.cta-sec__link:hover { color: var(--clr-white); }

@media (max-width: 540px) {
  .cta-sec { padding-block: var(--space-16); }
  .cta-sec__heading { font-size: clamp(var(--text-3xl), 11vw, var(--text-4xl)); }
  .cta-sec__links { gap: var(--space-6); }
  .cta-sec__sub { display: none; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 100px;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn--primary {
  background: var(--clr-white);
  color: var(--clr-bg);
}
.btn--primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,244,248,.14);
}
.btn--outline {
  border: 1px solid var(--clr-border-h);
  color: var(--clr-muted);
  background: transparent;
}
.btn--outline:hover {
  border-color: rgba(255,255,255,.35);
  color: var(--clr-white);
  background: rgba(255,255,255,.04);
}


/* ─── Target list — card grid ─── */
.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
.target-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: var(--space-6) var(--space-8);
  font-size: var(--text-base);
  color: var(--clr-muted);
  transition: background var(--duration), color var(--duration), border-color var(--duration), transform var(--duration);
}
.target-item:hover {
  background: var(--clr-surface2);
  color: var(--clr-white);
  border-color: var(--clr-border-h);
  transform: translateY(-2px);
}
.target-grid::after { content: ''; background: transparent; }
@media (max-width: 500px) { .target-grid { grid-template-columns: 1fr; } }

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--clr-border);
  padding-block: var(--space-8);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.footer__copy {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--clr-dim);
}
.footer__nav { display: flex; gap: var(--space-8); list-style: none; }
.footer__nav a {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--clr-dim);
  transition: color var(--duration);
}
.footer__nav a:hover { color: var(--clr-white); }

/* ─── Mobile responsive ─── */
@media (max-width: 768px) {

  /* sec-head: menší font na mobile */
  .sec-head h2 { font-size: clamp(var(--text-2xl), 7vw, var(--text-3xl)); }
  .sec-head { padding-bottom: var(--space-6); }

  /* rows */
  .rows { gap: var(--space-3); margin-top: var(--space-10) !important; }
  .row-item { padding: var(--space-8) var(--space-6); }

  /* hero */
  .hero__status { font-size: 0.78rem; padding: 4px 12px 4px 8px; }
  .hero__desc { font-size: var(--text-base); }

  /* statement */
  .statement .container {
    padding: var(--space-12) var(--space-10);
    border-radius: var(--radius-md);
  }
  .statement__text { font-size: clamp(var(--text-xl), 5.5vw, var(--text-3xl)); }

  /* CTA */
  .cta-sec__inner {
    padding: var(--space-12) var(--space-10);
    border-radius: var(--radius-md);
  }

  /* stats */
  .stat { padding: var(--space-8) var(--space-6); }

  /* fotky */
  .photo-frame--wide     { aspect-ratio: 16/9; }
  .photo-frame--square   { aspect-ratio: 4/3; }
  .photo-frame--portrait { aspect-ratio: 4/3; }
  .hero__right { min-height: 55vw; max-height: 300px; }
  .hero__right--portrait { min-height: auto; max-height: none; }
}

@media (max-width: 540px) {

  /* nav */
  .nav { height: 48px; width: calc(100% - 1rem); }
  .nav-btn { padding: 6px 12px; font-size: 0.8rem; }
  .nav__logo { font-size: 0.9rem; }

  /* hero */
  .hero__left { padding: var(--space-10) var(--space-6); min-height: auto; }
  .hero__name { font-size: clamp(var(--text-2xl), 10vw, var(--text-3xl)); }

  /* row cards — priestranné */
  .row-item {
    grid-template-columns: 44px 1fr;
    padding: var(--space-8) var(--space-6);
    gap: var(--space-4);
  }
  .rows { gap: var(--space-4); }
  .row-body h3 { font-size: var(--text-lg); }

  /* fotky */
  .photo-frame--square { aspect-ratio: 3/2; }
  .photo-frame--wide   { aspect-ratio: 16/9; }
  .hero__right { max-height: 260px; }
  .hero__right--portrait { max-height: none; }

  /* service cards */
  .svc-card { padding: var(--space-8) var(--space-6); }

  /* target */
  .target-item { padding: var(--space-6) var(--space-6); }

  /* CTA */
  .cta-sec__inner { padding: var(--space-10) var(--space-6); }
  .cta-sec h2 { font-size: clamp(var(--text-2xl), 7vw, var(--text-3xl)); }

  /* statement */
  .statement .container { padding: var(--space-10) var(--space-6); }

  /* buttons */
  .btn { padding: 12px 22px; font-size: 0.9rem; }
}
