/* ============================================
   HOUSE — 2026 BH design system
   Sync: bh-gradients-2026 + bh-buttons-showcase
   ============================================ */

:root {
  /* --bh-* sú aliasy na kanonické tokeny z variables.css (jeden zdroj pravdy).
     Zmena farby sa robí len v variables.css; tieto ju automaticky prevezmú. */
  --bh-primary: var(--primary-blue);
  --bh-dark:    var(--dark-blue);
  --bh-azure:   var(--azure-blue);
  --bh-sky:     var(--sky-blue);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* iOS Safari font boosting VYPNUTÝ — inak si svojvoľne zväčšuje texty (~1.2×)
     a rozbíja mobilné layouty (karty rozcestníka nerovnomerné/napchaté) */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bh-dark);
  color: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; touch-action: manipulation; }   /* WIG: bez 300ms tap delay / double-tap zoomu */

/* ═══ Scroll Progress Bar ═══ */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--bh-primary), var(--bh-azure), var(--bh-sky));
  width: 0%;
  transition: width .05s linear;
}

/* ═══ Fixed Page Background ═══ */
.page-bg {
  position: fixed; inset: 0; z-index: -1;
  background: var(--bh-dark);
  overflow: hidden;
}
.page-bg .bg-blob {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: .3;
}
@keyframes auroraFloat {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(40px,-30px) scale(1.1); }
  66%  { transform: translate(-30px,40px) scale(.95); }
  100% { transform: translate(20px,-20px) scale(1.05); }
}

/* ═══ Scroll Lag ═══ */
.scroll-lag {
  will-change: transform;
  /* PERF: BEZ transition — JS píše transform per-frame (lerp v updateLag vyhladzuje);
     transition navyše štartovala novú interpoláciu každý frame = style recalc storm (jank). */
}

/* ═══ Reveal Animations ═══ */
.reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger { opacity: 0; transition: opacity .6s; }
.reveal-stagger.visible { opacity: 1; }
.reveal-stagger.visible .section-label { animation: slideUp .6s 0s cubic-bezier(.16,1,.3,1) both; }
.reveal-stagger.visible .section-title { animation: slideUp .6s .1s cubic-bezier(.16,1,.3,1) both; }
.reveal-stagger.visible .section-desc  { animation: slideUp .6s .2s cubic-bezier(.16,1,.3,1) both; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stagger > .si {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.stagger.visible > .si { opacity: 1; transform: translateY(0); }
.stagger.visible > .si:nth-child(1) { transition-delay: 0s; }
.stagger.visible > .si:nth-child(2) { transition-delay: .06s; }
.stagger.visible > .si:nth-child(3) { transition-delay: .12s; }
.stagger.visible > .si:nth-child(4) { transition-delay: .18s; }
.stagger.visible > .si:nth-child(5) { transition-delay: .24s; }
.stagger.visible > .si:nth-child(6) { transition-delay: .30s; }
.stagger.visible > .si:nth-child(7) { transition-delay: .36s; }
.stagger.visible > .si:nth-child(8) { transition-delay: .42s; }
.stagger.visible > .si:nth-child(9) { transition-delay: .48s; }

/* ═══ NAV ═══ */
.house-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(3,28,64,0.72);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.house-nav__brand {
  font-size: 14px; font-weight: 700;
  letter-spacing: 3px; color: #fff;
}
.house-nav__brand small {
  display: block; font-size: 10px;
  letter-spacing: 2px; font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.house-nav__links { display: flex; gap: 32px; list-style: none; }
.house-nav__links a {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .2s;
}
.house-nav__links a:hover { color: #fff; }

/* ═══ PERSISTENT TOP-BAR — wayfinding (objaví sa po intre) ═══ */
.bh-topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 32px;
  background: rgba(3,28,64,0.72);   /* trochu krytejšie pozadie kompenzuje menší blur */
  backdrop-filter: blur(12px) saturate(150%);   /* 20→12px: fixný topbar sa re-blurne KAŽDÚ scroll snímku → lacnejšie = plynulejší scroll */
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  /* skryté kým nezačne rozcestník */
  opacity: 0; transform: translateY(-100%);
  pointer-events: none;
  transition: opacity .4s var(--ease-out), transform .45s var(--ease-out);
}
.bh-topbar.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
/* otvorené mobilné menu musí byť nad lang-offer (z 940) aj cookie lištou — inak prekryjú EVENTS */
.bh-topbar.menu-open { z-index: 1000; }

.bh-topbar__brand {
  display: flex; align-items: center;
  background: none; border: none; cursor: pointer; padding: 4px 6px;
  border-radius: 8px;
  transition: opacity .2s ease;
}
.bh-topbar__logo {
  height: 24px; width: auto; display: block;
}
.bh-topbar__brand:hover { opacity: .8; }

.bh-topbar__links { display: flex; align-items: center; gap: 6px; }
.bh-topbar__link {
  background: none; border: none; cursor: pointer;
  font-family: var(--font, 'Montserrat', sans-serif);
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px; border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.bh-topbar__link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.bh-topbar__link.is-active { color: #fff; background: rgba(69,144,255,0.18); }
.bh-topbar__link:active { transform: scale(0.96); }
.bh-topbar__brand:focus-visible,
.bh-topbar__link:focus-visible,
.bh-topbar__burger:focus-visible {
  outline: 2px solid rgba(69,144,255,0.9); outline-offset: 2px;
}

/* Pravá strana topbaru — pill + linky + hamburger; kotva pre mobilný dropdown */
.bh-topbar__right { display: flex; align-items: center; gap: 6px; position: relative; }

/* Hamburger — skrytý na desktope, zobrazí sa až na mobile (≤767px) */
.bh-topbar__burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0;
  background: none; border: none; cursor: pointer; border-radius: 10px;
}
.bh-topbar__burger span {
  display: block; width: 22px; height: 2px; margin: 0 auto;
  background: rgba(255,255,255,0.88); border-radius: 2px;
  transition: transform .25s var(--ease-out), opacity .2s ease;
}
.bh-topbar.menu-open .bh-topbar__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bh-topbar.menu-open .bh-topbar__burger span:nth-child(2) { opacity: 0; }
.bh-topbar.menu-open .bh-topbar__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBIL (≤767px): inline linky → hamburger dropdown ── */
@media (max-width: 767px) {
  .bh-topbar { padding: 10px 16px; }
  .bh-topbar__burger { display: flex; }
  /* linky sa stanú vyskakovacím panelom pod topbarom (vpravo, pod hamburgerom) */
  .bh-topbar__links {
    position: absolute; top: calc(100% + 10px); right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    min-width: 208px; padding: 10px;
    background: rgba(4,20,45,0.97);
    backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%);
    border: 1px solid rgba(255,255,255,0.10); border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.5);
    opacity: 0; transform: translateY(-8px) scale(0.98); transform-origin: top right;
    pointer-events: none; visibility: hidden;
    transition: opacity .2s ease, transform .24s var(--ease-out), visibility .24s;
  }
  .bh-topbar.menu-open .bh-topbar__links {
    opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; visibility: visible;
  }
  .bh-topbar__link { font-size: 13px; letter-spacing: .1em; padding: 13px 16px; text-align: left; width: 100%; border-radius: 10px; }
  .bh-topbar__lang { margin-top: 4px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.08); border-radius: 0 0 10px 10px; }
  .bh-topbar__logo { height: 20px; }
}
@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .bh-topbar__links { transition: opacity .15s ease, visibility .15s; transform: none; }
  .bh-topbar.menu-open .bh-topbar__links { transform: none; }
  .bh-topbar__burger span { transition: none; }
}

/* ═══ UNLOCK CUE — okamžitá odozva počas 750ms odomykania sekcie ═══ */
.section-unlock-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  z-index: 9998; pointer-events: none; opacity: 0;
  background: linear-gradient(90deg, var(--bh-azure), var(--bh-sky));
  box-shadow: 0 0 12px rgba(69,144,255,0.6);
}
body.section-unlocking .section-unlock-bar {
  animation: unlockProgress 1.4s cubic-bezier(0.33,1,0.68,1) forwards;
}
@keyframes unlockProgress {
  0%   { width: 0;    opacity: 1; }
  65%  { width: 72%;  opacity: 1; }
  100% { width: 100%; opacity: 0; }
}
.hero-card__btn.is-loading { cursor: progress; }
@media (prefers-reduced-motion: reduce) {
  .bh-topbar { transition: opacity .2s ease; transform: none; }
  body.section-unlocking .section-unlock-bar { animation: none; }
}

/* ═══ KONTAKT MODAL ═══ */
.contact-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  visibility: hidden; opacity: 0;
  transition: opacity .3s var(--ease-out), visibility 0s linear .3s;
}
.contact-modal.is-open { visibility: visible; opacity: 1; transition: opacity .3s var(--ease-out); }
.contact-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(2,12,30,0.72);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.contact-modal__card {
  position: relative; z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px); overflow-y: auto;
  padding: 40px 40px 32px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(8,30,66,0.96), rgba(3,18,44,0.98));
  border: 1px solid rgba(69,144,255,0.22);
  box-shadow: 0 30px 90px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.03) inset;
  transform: translateY(16px) scale(0.98);
  transition: transform .35s var(--ease-out);
}
.contact-modal.is-open .contact-modal__card { transform: translateY(0) scale(1); }
.contact-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; display: grid; place-items: center;
  border: none; border-radius: 10px; cursor: pointer;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7);
  transition: background .2s ease, color .2s ease;
}
.contact-modal__close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.contact-modal__close:active { transform: scale(0.94); }
.contact-modal__close i { width: 20px; height: 20px; }
.contact-modal__eyebrow {
  font-size: var(--eyebrow-size); font-weight: var(--eyebrow-weight); letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase; color: var(--eyebrow-color);
}
.contact-modal__title {
  font-size: clamp(1.6rem, 3.4vw, 2.1rem); font-weight: var(--title-weight);
  letter-spacing: var(--title-tracking); line-height: 1.1; color: #fff;
  margin: .6rem 0 .5rem;
}
.contact-modal__lead {
  font-size: .95rem; line-height: 1.6; color: rgba(255,255,255,0.62);
  margin-bottom: 1.75rem; max-width: 44ch;
}
.contact-modal__rows { display: flex; flex-direction: column; gap: 4px; }
.contact-modal__row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 14px; border-radius: 12px;
  color: inherit; text-decoration: none;
  transition: background .2s ease;
}
a.contact-modal__row:hover { background: rgba(69,144,255,0.1); }
.contact-modal__row i { width: 20px; height: 20px; color: var(--bh-sky); flex: none; margin-top: 2px; }
.contact-modal__row strong {
  display: block; font-size: .62rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 3px;
}
.contact-modal__row span,
.contact-modal__row div > span { font-size: .98rem; color: rgba(255,255,255,0.9); line-height: 1.45; }
.contact-modal__footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 1.75rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-modal__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--btn-radius);
  background: var(--btn-grad-primary); color: #fff;
  font-size: 12px; font-weight: var(--btn-weight); letter-spacing: var(--btn-tracking); text-transform: uppercase;
  box-shadow: var(--btn-shadow-violet);
  transition: transform .2s var(--ease-out), filter .2s ease;
}
.contact-modal__cta:hover { filter: brightness(1.08); transform: translateX(3px); }
.contact-modal__cta:active { transform: scale(0.97); }
.contact-modal__social {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 10px; border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); transition: color .2s, border-color .2s, background .2s;
}
.contact-modal__social:hover { color: #fff; border-color: var(--bh-sky); background: rgba(69,144,255,0.12); }
.contact-modal__close:focus-visible,
.contact-modal__row:focus-visible,
.contact-modal__cta:focus-visible,
.contact-modal__social:focus-visible { outline: 2px solid rgba(69,144,255,0.9); outline-offset: 2px; }
body.modal-open { overflow: hidden; }
@media (max-width: 540px) {
  .contact-modal__card { padding: 32px 22px 26px; }
  .contact-modal__footer { flex-direction: column; align-items: stretch; }
  .contact-modal__cta { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .contact-modal, .contact-modal__card { transition: opacity .15s ease; }
  .contact-modal__card { transform: none; }
}

/* ═══ HERO ═══ */
.house-hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
  padding: 140px 40px 80px;
}
.hero-aurora {
  position: absolute; inset: 0;
  filter: blur(100px); opacity: .6;
  pointer-events: none;
}
.hero-aurora .blob {
  position: absolute; border-radius: 50%;
  animation: auroraFloat 12s ease-in-out infinite alternate;
}
.hero-aurora .b1 { width: 500px; height: 500px; background: var(--bh-primary); top: -10%; left: 10%; }
.hero-aurora .b2 { width: 400px; height: 400px; background: var(--bh-dark);    bottom: 0; right: 10%;  animation-delay: -3s; animation-duration: 15s; }
.hero-aurora .b3 { width: 350px; height: 350px; background: var(--bh-azure);   top: 30%; left: 50%;     animation-delay: -6s; animation-duration: 18s; }
.hero-aurora .b4 { width: 300px; height: 300px; background: var(--bh-sky);     top: 60%; left: 20%;     animation-delay: -9s; animation-duration: 14s; }

.hero-content { position: relative; z-index: 1; max-width: 1100px; }
.house-hero__eyebrow {
  font-size: var(--eyebrow-size); font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-tracking); color: var(--eyebrow-color);
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .8s .2s forwards;
}
.house-hero__title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700; line-height: 1;
  color: #fff;                                            /* de-slop: solid biela namiesto gradient-clip (spodok textu blednul do tmavomodrej = slabý kontrast) */
  filter: drop-shadow(0 0 30px rgba(69,144,255,0.18));   /* jednotný jemný brand glow */
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .8s .4s forwards;
}
.house-hero__body {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 680px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .8s .6s forwards;
}
.house-hero__cta-row {
  display: flex; gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .8s .8s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* hero stats */
.house-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  margin: 4rem auto 0;
  max-width: 1100px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp .8s 1s forwards;
}
.house-stat {
  padding: 32px 24px;
  background: rgba(3,28,64,0.5);
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
}
.house-stat__num {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700; line-height: 1;
  color: var(--bh-sky);   /* de-slop: solid akcentová modrá (veľké číslo = „pop" prvok, 60/30/10) */
}
.house-stat__label {
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

/* ═══ GALÉRIA — pinned horizontal scroll ═══ */
.gallery-pin {
  position: relative;
  height: 550vh;             /* /quieter: 800→550 (100vh delay + 7 fotiek × ~64vh) — kratší sticky travel, JS mapping sa adaptuje cez offsetHeight */
  background: transparent;   /* global aurora-mesh gradient prebleskuje cez sekciu */
}
.gallery-pin__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.gallery-pin__track {
  display: flex;
  height: 100%;
  width: 700vw;              /* 7 × 100vw */
  will-change: transform;
}
.gallery-pin__item {
  flex: 0 0 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #000;          /* default — JPGs sit on black */
}
.gallery-pin__item.is-transparent {
  background: transparent;   /* jediná zmena vs JPG slots — gradient prebleskne cez PNG alpha */
}
.gallery-pin__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
}
.gallery-pin__item:hover img { transform: scale(1.03); }
@media (prefers-reduced-motion: reduce) {
  .gallery-pin__item:hover img { transform: none; }
}
/* .is-transparent img dedí default cover správanie z .gallery-pin__item img —
   identické s JPG slots, žiadny override. Alpha v hornej časti PNG ukáže
   globálny aurora-mesh gradient cez transparent background slotu. */
.gallery-pin__progress {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(3,28,64,.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
}
.gallery-pin__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: background .3s, width .3s;
}
.gallery-pin__dot.is-active {
  background: var(--bh-sky);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 700px) {
  .gallery-pin { height: 700vh; }    /* 100vh delay + 6×100vh shift on mobile (1 less for shorter mobile) */
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(3,28,64,.95);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity .3s;
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 1001;
}
.lightbox__close:hover, .lightbox__nav:hover {
  background: rgba(255,255,255,.18);
  transform: scale(1.05);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__caption {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: rgba(255,255,255,.7);
  letter-spacing: 1px;
  text-align: center;
}
.lightbox__caption strong { color: #fff; font-weight: 700; }

@media (max-width: 700px) {
  .gallery-item { width: 88vw; }
  .gallery-item:first-child { margin-left: 0; }
  .lightbox { padding: 16px; }
  .lightbox__close { top: 12px; right: 12px; width: 44px; height: 44px; }   /* WIG: min touch target 44px */
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
}

/* ═══ PILLARS — sticky vertical card stack (01/02/03) ═══ */
.pillars-stack {
  position: relative;
  padding: 6rem 2rem;
}
.pillar-tail-spacer {
  display: block;
  height: 250vh;        /* extra scroll-room po poslednej karte — explicit HTML spacer (najspoľahlivejšie) */
  width: 100%;
  pointer-events: none;
}
.pillar-card {
  position: sticky;
  top: 80px;                        /* všetky karty pri rovnakom vrchu — nová prekryje predošlú */
  margin: 0 auto 30vh;              /* väčší odstup medzi kartami → karty sa pri swape neprekrývajú */
  max-width: var(--content-max);
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 4rem 3rem;
  background: transparent;          /* žiadny card fill */
  border: none;                     /* žiadny modrý okraj */
  border-radius: 0;
  box-shadow: none;
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
  /* PERF: žiadny permanentný will-change — 3 trvalé GPU vrstvy zbytočne držia pamäť a
     súťažia o kompozit počas ťažkého odomknutia. Browser promotne vrstvu až pri prechode. */
}
/* Karta odíde NAHOR a zmizne skôr, než nasledujúca dorazí — žiadne prelínanie, čistý odstup */
.pillar-card.is-superseded {
  opacity: 0;
  transform: translateY(-64px);
  pointer-events: none;
}
.pillar-card:last-child { margin-bottom: 0; }

.pillar-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  max-width: var(--content-max);
}
.pillar-content.is-reverse .pillar-media { order: -1; }

.pillar-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pillar-text .section-label {
  margin-bottom: 0;
  display: inline-block;
  align-self: flex-start;
}
.pillar-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--title-weight);
  line-height: 1.1;
  letter-spacing: var(--title-tracking);
  color: #fff;
  margin: 0;
}
.pillar-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  margin: 0;
}
.pillar-body {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin: 0;
}
.pillar-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);   /* 2×2 — v užšom textovom stĺpci čitateľnejšie než 4 v rade (labely sa neztláčajú) */
  gap: .875rem;
  margin-top: .9rem;
}
.pillar-stat {
  padding: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color .25s ease, background .25s ease, transform .25s cubic-bezier(.16,1,.3,1);
}
.pillar-stat:hover {
  border-color: rgba(69,144,255,.35);
  background: rgba(69,144,255,.07);
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .pillar-stat:hover { transform: none; }
  .pillar-photo img { transition: none; }
  .pillar-photo:hover img { transform: none; }
}
.pillar-stat .num {
  font-size: 1.7rem;
  font-weight: 700;
  color: #6FB0FF;          /* plná farba namiesto gradient-textu — ostrejšie, čitateľnejšie, menej „AI-slop" */
  line-height: 1;
}
.pillar-stat .lbl {
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  line-height: 1.35;
}
.pillar-text .btn {
  align-self: flex-start;
  margin-top: .5rem;
}

.pillar-media {
  width: 100%;
}
.pillar-media .ph {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 75vh;
  border-radius: 20px;
}

/* Reálna fotka v karte (rovnaký box ako placeholder .ph) */
.pillar-media .pillar-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 75vh;
  border-radius: 20px;
  overflow: hidden;
  margin: 0;
}
.pillar-media .pillar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pillar-media .pillar-photo .ph__label {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .pillar-photo:hover img { transform: scale(1.04); }
}

@media (max-width: 900px) {
  .pillars-stack { padding: 3rem 1rem; }
  /* MOBIL: vypni sticky-scroll stacking → normálny statický stĺpec.
     (sticky karty + 250vh tail-spacer robili na mobile obrovskú modrú medzeru + text „až po swipe") */
  .pillar-card {
    position: static;
    padding: 2rem 1rem;
    min-height: auto;
    margin: 0 auto 2.5rem;
    top: auto;
    opacity: 1;
    transform: none;
  }
  .pillar-card.is-superseded { opacity: 1; transform: none; pointer-events: auto; }
  .pillar-tail-spacer { height: 0; }
  .pillar-content { grid-template-columns: 1fr; gap: 1.5rem; }
  .pillar-content.is-reverse .pillar-media { order: 0; }
  .pillar-media .ph,
  .pillar-media .pillar-photo { max-height: 36vh; aspect-ratio: 16/10; }
  /* caption nad fotkou: nech sa zmestí do fotky (nie nowrap → orezanie na okrajoch) */
  .pillar-media .pillar-photo .ph__label {
    left: 12px; right: 12px; transform: none;
    white-space: normal; text-align: center; font-size: 11px; line-height: 1.3;
  }
  .pillar-stats { grid-template-columns: repeat(2, 1fr); }
  .pillar-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .pillar-lead { font-size: .95rem; }
  .pillar-body { display: none; }
}

/* Počas smooth scroll animácie (po klik O BUDOVE) vypneme sticky/scroll-hijack mechaniky.
   Inak by browser dropoval frame budget na prepočet sticky pozícií + pin-gallery + transformácií. */
.house-block.scroll-anim-active .gallery-pin {
  position: static !important;
  height: 100vh !important;
}
.house-block.scroll-anim-active .pillar-card {
  position: static !important;
  transition: none !important;
}
.house-block.scroll-anim-active .pillar-tail-spacer {
  height: 0 !important;
}

/* bh-global-bg má position:fixed cez celý viewport. Pri unlocku ihneď prekryje hero a
   používateľ nevidí ako hero plynulo opúšťa scroll-om (tak ako pri Events transition).
   Skryjeme ho počas scroll animácie a fade-in-eme po dokončení. */
.bh-global-bg {
  transition: opacity 0.5s ease;
}
.house-block.scroll-anim-active .bh-global-bg {
  opacity: 0;
}

/* Delay identity headline + text — keep hidden počas scrollu, reveal 3s po klik
   (= ~tesne po scroll end). Zabraňujeme IO triggrovaniu predčasne. */
.house-block.identity-delay-active .identity-block .reveal,
.house-block.identity-delay-active .identity-block .split-heading {
  opacity: 0 !important;
  transform: translateY(50px) !important;
}
.house-block.identity-delay-active .identity-block .split-heading .char {
  opacity: 0 !important;
  transform: translateY(80px) rotateX(90deg) !important;
}

/* ═══ GLOBAL BACKGROUND — Midnight Pulse Aurora Mesh + cursor spotlight ═══ */
/* Aplikované na celý .house-block (od sekcie "Identita ako kľúč" nadol).
   Fixed layer pod celým obsahom, transparent sekcie nad ním ukážu gradient. */
.bh-global-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--bh-dark);     /* base navy — Midnight Pulse */
}
.bh-global-bg__mesh {
  position: absolute;
  inset: 0;
  filter: blur(90px);
  opacity: 0.9;
  will-change: transform;
}
.bh-global-bg__mesh .dot {
  position: absolute;
  border-radius: 50%;
}
.bh-global-bg__mesh .dot:nth-child(1) {
  width: 55%; height: 55%; background: var(--bh-azure);
  top: 10%; left: 60%;
  animation: meshB 11s ease-in-out infinite alternate;
}
.bh-global-bg__mesh .dot:nth-child(2) {
  width: 45%; height: 45%; background: var(--bh-primary);
  bottom: 10%; left: 10%;
  animation: meshA 13s ease-in-out infinite alternate;
}
.bh-global-bg__mesh .dot:nth-child(3) {
  width: 35%; height: 35%; background: rgba(3,28,64,0.9);
  top: 50%; left: 30%;
  animation: meshC 9s ease-in-out infinite alternate;
}
/* .bh-global-bg__spotlight odstránený 2026-06-23 — ambient vrstva = grid-reveal. */

/* House-block layering: gradient pod, sections nad */
.house-block { position: relative; }
.house-block > section,
.house-block > .lightbox { position: relative; z-index: 1; }

/* ═══ KINETIC sections ═══ */
.kinetic {
  min-height: 60vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: visible;
  padding: 4rem 2rem;
}
.split-heading {
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 900; line-height: 1.15;   /* black — zjednotené naprieč BH headline */
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0;
  overflow: visible;
  padding-bottom: .1em;
  transition: transform .2s ease-out, text-shadow .3s ease-out;
}
.split-heading .word { display: inline-flex; margin: 0 .12em; overflow: visible; }
.split-heading .char {
  display: inline-block; overflow: visible;
  opacity: 0; transform: translateY(80px) rotateX(90deg);
  transition: opacity .5s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.split-heading.visible .char { opacity: 1; transform: translateY(0) rotateX(0); }

/* .scroll-glow odstránený 2026-06-23 — ambient vrstva zredukovaná na grid-reveal. */

/* ═══ Section base ═══ */
.section {
  padding: 4rem 2rem;
  max-width: var(--content-max);
  margin: 0 auto;
  position: relative;
}
.section-label {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .28em; color: var(--bh-sky);
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: .75rem;
}
.section-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* 2-column split section */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.section-split.is-reverse .section-split__media { order: -1; }
.section-split__copy p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
  margin-bottom: 1rem;
}
.section-split__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.section-split__stat {
  padding: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.section-split__stat .num {
  font-size: 2rem; font-weight: 700;
  color: var(--bh-sky);   /* de-slop: solid akcentová modrá */
  display: block; line-height: 1; margin-bottom: 6px;
}
.section-split__stat .lbl {
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

/* ═══ Aurora Mesh (sections) ═══ */
.aurora-mesh {
  position: absolute; inset: 0;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}
.aurora-mesh .dot { position: absolute; border-radius: 50%; }
.g-deep-ocean .dot:nth-child(1){ width:60%;height:60%;background:var(--bh-primary);top:-10%;left:-10%;animation:meshA 10s ease-in-out infinite alternate; }
.g-deep-ocean .dot:nth-child(2){ width:50%;height:50%;background:var(--bh-dark);bottom:-5%;right:-5%;animation:meshB 12s ease-in-out infinite alternate; }
.g-deep-ocean .dot:nth-child(3){ width:40%;height:40%;background:rgba(69,144,255,.6);top:40%;left:50%;animation:meshC 14s ease-in-out infinite alternate; }

.g-sapphire .dot:nth-child(1){ width:50%;height:50%;background:rgba(27,0,226,.5);top:0;left:0;animation:meshA 14s ease-in-out infinite alternate; }
.g-sapphire .dot:nth-child(2){ width:60%;height:40%;background:rgba(0,87,255,.3);bottom:0;right:0;animation:meshB 11s ease-in-out infinite alternate; }
.g-sapphire .dot:nth-child(3){ width:35%;height:35%;background:rgba(69,144,255,.3);top:30%;right:20%;animation:meshC 15s ease-in-out infinite alternate; }

@keyframes meshA { 0%{transform:translate(0,0) scale(1);} 50%{transform:translate(30px,-20px) scale(1.15);} 100%{transform:translate(-20px,30px) scale(.9);} }
@keyframes meshB { 0%{transform:translate(0,0) scale(1);} 50%{transform:translate(-25px,35px) scale(1.1);} 100%{transform:translate(35px,-15px) scale(.95);} }
@keyframes meshC { 0%{transform:translate(0,0) scale(1);} 50%{transform:translate(20px,20px) scale(1.08);} 100%{transform:translate(-15px,-25px) scale(1.12);} }

/* ═══ Grain overlay ═══ */
.grain-overlay::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: .04; mix-blend-mode: overlay;
  pointer-events: none;
}

/* ═══ Liquid Motion blobs ═══ */
.liquid-container { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.liquid-blob {
  position: absolute;
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
  filter: blur(50px); opacity: .4;
}
@keyframes liquidMorph {
  0%{ border-radius:40% 60% 50% 50% / 50% 40% 60% 50%; transform: translate(0,0) rotate(0); }
  25%{ border-radius:50% 40% 60% 50% / 40% 60% 40% 60%; transform: translate(20px,-15px) rotate(5deg); }
  50%{ border-radius:60% 50% 40% 60% / 60% 50% 50% 40%; transform: translate(-10px,20px) rotate(-3deg); }
  75%{ border-radius:45% 55% 55% 45% / 55% 45% 55% 45%; transform: translate(15px,10px) rotate(4deg); }
  100%{ border-radius:40% 60% 50% 50% / 50% 40% 60% 50%; transform: translate(0,0) rotate(0); }
}

/* ═══ PLACEHOLDER (until real photos) ═══ */
.ph {
  position: relative;
  background:
    linear-gradient(135deg, rgba(27,0,226,0.15), rgba(69,144,255,0.08)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 12px, transparent 12px 24px),
    #0F172A;
  border: 1px dashed rgba(69,144,255,0.25);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700;
  overflow: hidden;
}
.ph::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(27,0,226,0.18), transparent 60%);
  pointer-events: none;
}
.ph__label {
  position: relative; z-index: 1;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  background: rgba(3,28,64,0.6);
  backdrop-filter: blur(8px);
}

/* ═══ Identity block — texty hore (2-stĺpec) + carousel 360° gulí dole ═══ */
.identity-block {
  min-height: auto;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(4rem, 8vh, 7rem) 2rem;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vh, 5.5rem);
}
/* Texty HORE — vycentrované na stred */
.identity-text {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  max-width: min(1240px, 92vw);           /* širšie → vety idú viac do šírky, menej riadkov */
  margin: 0 auto;
}
.identity-text__head { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.identity-text__body { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; max-width: min(1080px, 92vw); }
/* Kinetic headline — vycentrovaný */
.identity-text__headline {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.05;
  justify-content: center;
  text-align: center;
  padding-bottom: 0;
}
/* /bolder eyebrow — výraznejší rozostup + akcentová linka pod ním */
.identity-text .section-label {
  display: inline-block;
  margin: 0;
  font-size: .72rem;
  letter-spacing: .28em;
  color: rgba(120, 170, 240, .8);
}
/* /distill — ozdobná linka odstránená, eyebrow stojí sám */
.identity-text .section-label::after { content: none; }
/* Téza — sub-headline pod kinetic headline (jedna úroveň nižšie) */
.identity-text__sub {
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -.015em;
  color: rgba(255, 255, 255, .92);
  text-wrap: balance;
}
/* Body — JEDNA veľkosť pre všetky odseky, širšie meradlo → menej riadkov */
.identity-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.68);
  max-width: 92ch;
  text-wrap: balance;   /* vyrovná dĺžku riadkov pri širšom meradle */
}
.identity-text .identity-text__lead { color: rgba(255,255,255,.82); }
/* Akcent — jediný pull moment (vizuálne ťažisko), stále doľava */
.identity-text .identity-text__accent {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -.01em;
  color: rgba(255, 255, 255, .96);
  max-width: 60ch;
  margin: .5rem 0;
  text-wrap: balance;
}
/* /distill — predeľovacia linka nad akcentom odstránená */
.identity-text .identity-text__accent::before { content: none; }
@keyframes dividerBreathe {
  0%, 100% { box-shadow: 0 0 16px rgba(69,144,255,.45); transform: scaleX(.92); }
  50%      { box-shadow: 0 0 30px rgba(69,144,255,.85); transform: scaleX(1.08); }
}
/* gradient highlight na úderný claim — /delight: pomalý svetelný shimmer prebehne textom */
.identity-text__accent-glow {
  /* /quieter — jemný statický sky tint namiesto behajúceho shimmeru */
  background: linear-gradient(115deg, #dfecff 0%, var(--bh-sky) 50%, #dfecff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@keyframes accentShimmer {
  0%, 100% { background-position: 100% 50%; }
  50%      { background-position: 0% 50%; }
}
/* Záver — zhrnutie, mierne stlmené oproti leadu */
.identity-text .identity-text__close {
  color: rgba(255,255,255,.74);
}
/* /delight — interaktívne mikro-momenty (len kde je naozajstný kurzor) */
.identity-text__sub { transition: text-shadow .5s var(--ease-out), letter-spacing .5s var(--ease-out); }
@media (hover: hover) {
  .identity-text__sub:hover {
    text-shadow: 0 0 16px rgba(69,144,255,.22);
  }
  .identity-text__accent { transition: filter .45s var(--ease-out); }
  .identity-text__accent:hover { filter: drop-shadow(0 0 22px rgba(69,144,255,.4)); }
}
/* /delight respektuje prefers-reduced-motion — žiadny shimmer/dýchanie */
@media (prefers-reduced-motion: reduce) {
  .identity-text__accent-glow { animation: none; background-position: 50% 50%; }
  .identity-text .identity-text__accent::before { animation: none; transform: none; }
}

/* ═══ Identity — 3D coverflow carousel (Swiper), centrovaný + edge-to-edge ═══ */
/* Full-bleed cez celú šírku obrazovky (od kraja po okraj), nezávisle na content-max.
   NEGATÍVNY MARGIN (nie transform) — transform na rodičovi rozhadzuje Swiperove merania → hlavná guľa mimo stredu. */
.identity-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.identity-swiper {
  width: 100%;
  max-width: none;
  margin: 0;
  /* Väčší vertikálny priestor — tiene gulí (box-shadow + kontaktný tieň) sa NEorežú o overflow:hidden
     (inak vznikal tmavší pruh = „tónový skok" oproti navy pod carouselom) */
  padding: 3.5rem 0 5rem !important;
  /* Fade len HORIZONTÁLNE (okrajové gule doľava/doprava); vertikálne PLNÉ (transparent → transparent by
     orezal tiene aj labely). Vertikálny clip rieši dostatočný padding vyššie. */
  overflow-x: clip;
  overflow-y: visible;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}
/* Slidy vertikálne vycentrované (hlavná guľa v strede radu, nie odseknutá hore) */
.identity-swiper .swiper-wrapper { align-items: center; }
/* Slide = sklenená guľa + label. Veľká šírka → v strede prominentne 1 guľa + 1 zľava + 1 sprava */
.identity-swiper .swiper-slide {
  width: clamp(260px, 30vw, 440px);
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: opacity .45s var(--ease-out);
}
/* bočné slidy stlmené, stredný (aktívny) plný = dôraz na stred */
.identity-swiper .swiper-slide:not(.swiper-slide-active) { opacity: .45; }
.identity-swiper .swiper-slide-active { opacity: 1; }
.identity-slide:focus-visible { outline: 2px solid rgba(69,144,255,0.9); outline-offset: 6px; border-radius: 18px; }
/* Guľa vo vnútri slidu */
.identity-orb { display: flex; flex-direction: column; align-items: center; gap: .9rem; }
.identity-orb.orb360--pick { --orb-size: clamp(230px, 26vw, 380px); }
.identity-orb .orb360__stage { width: var(--orb-size); }
.identity-orb__label {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
  transition: color .25s var(--ease-out);
}
.identity-swiper .swiper-slide-active .identity-orb__label { color: #fff; }
/* Paginácia — brand modré bodky */
.identity-swiper .swiper-pagination-bullet { background: rgba(255,255,255,.35); opacity: 1; transition: background .25s, transform .25s; }
.identity-swiper .swiper-pagination-bullet-active { background: var(--bh-sky); transform: scale(1.25); }

/* Tablet / mobil — menší rozostup textu */
@media (max-width: 860px) {
  .identity-text { gap: 1.5rem; }
}
/* Telefón — menšie gule/slidy nech susedné „vykúkajú" (coverflow efekt sa nestratí),
   menší side padding, aby text nebol pritesný */
@media (max-width: 700px) {
  .identity-block { padding: clamp(3rem, 6vh, 5rem) 1.25rem; gap: clamp(2.5rem, 5vh, 4rem); }
  .identity-swiper { padding: 2.25rem 0 3.25rem !important; }
  .identity-swiper .swiper-slide { width: 66vw; }
  .identity-orb.orb360--pick { --orb-size: 54vw; }
}

/* ═══ Bento gallery (Collaborative) ═══ */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
  margin-top: 2rem;
}
.bento .ph { border-radius: 16px; }
.bento .ph:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.bento .ph:nth-child(2) { grid-column: span 2; }
.bento .ph:nth-child(3) { }
.bento .ph:nth-child(4) { }
.bento .ph:nth-child(5) { grid-column: span 2; }

/* ═══ Workspace chips (as glass-ish chips) ═══ */
.workspace-chips {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 2rem 0 2.5rem;
}
.workspace-chip {
  padding: 14px 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.85);
  display: flex; align-items: center; gap: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* Emil: scoped props (nie `all`) — animujeme len to, čo sa na hover mení */
  transition: background .25s cubic-bezier(.16,1,.3,1), border-color .25s cubic-bezier(.16,1,.3,1), transform .2s cubic-bezier(.16,1,.3,1), box-shadow .25s cubic-bezier(.16,1,.3,1);
}
.workspace-chip:hover {
  background: rgba(0,87,255,.15);
  border-color: rgba(0,87,255,.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,87,255,.25);
}
.workspace-chip svg { width: 16px; height: 16px; color: var(--bh-sky); }

/* ── ŽIVÝ PRIESTOR — menšia medzera headline↔copy + vycentrované texty ── */
#wsLifeSection {
  min-height: auto;            /* zruší prázdnych ~30vh pod headlinom = menšia medzera */
  padding: 4rem 2rem 0.5rem;
}
#workspace {
  padding-top: 1rem;
  text-align: center;          /* eyebrow + nadpis + desc + button na stred */
}
#workspace .section-desc { margin-inline: auto; }
#workspace .workspace-chips { justify-content: center; }

/* MOBIL: iná vizuálna cesta — namiesto pill chipov 2-stĺpcový zoznam „ikona + text"
   (bez pozadia/rámika, nie button-y). + CTA plná šírka s čitateľným zalomením. */
@media (max-width: 767px) {
  #workspace .workspace-chips {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 15px 18px; margin: 1.75rem 0 2.25rem; justify-content: stretch;
  }
  .workspace-chip {
    padding: 0; background: none; border: none; border-radius: 0;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    font-size: 13px; font-weight: 600; line-height: 1.35;
    color: rgba(255,255,255,.86);
    align-items: flex-start; gap: 9px; text-align: left;
  }
  .workspace-chip:hover { background: none; border: none; transform: none; box-shadow: none; }
  .workspace-chip svg { width: 17px; height: 17px; margin-top: 1px; flex-shrink: 0; }
  #workspace .btn-lg {
    display: flex; width: 100%; box-sizing: border-box;
    justify-content: center; text-align: center;
    font-size: 14.5px; line-height: 1.35; padding: 15px 18px;
  }
}

/* ═══ FAQ accordion ═══ */
.faq-list {
  display: flex; flex-direction: column;
  gap: 12px;
  max-width: 880px;
  margin: 2rem auto 0;
}
.faq-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s, background .3s;
}
.faq-item[open] {
  background: rgba(27,0,226,.06);
  border-color: rgba(69,144,255,.3);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-size: 17px; font-weight: 700;
  color: #fff;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px; font-weight: 400;
  color: var(--bh-sky);
  transition: transform .3s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 28px 24px;
  color: rgba(255,255,255,.7);
  font-size: 15px; line-height: 1.7;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(.16,1,.3,1);
}
@media (prefers-reduced-motion: reduce) {
  .faq-item__body { transition: none; }
}
.faq-item__body ul { padding-left: 20px; margin-top: 8px; }
.faq-item__body a { color: var(--bh-sky); }

/* ═══ Contact ═══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
/* Meno + Priezvisko vedľa seba; na telefóne pod seba (predtým inline štýl bez mobile zalomu) */
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .contact-form__row { grid-template-columns: 1fr; } }
.contact-form__field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.contact-form input, .contact-form textarea { min-width: 0; max-width: 100%; }
.contact-form label {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s, background .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--bh-sky);
  background: rgba(69,144,255,.06);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info__row {
  display: flex; gap: 16px;
  align-items: flex-start;
}
.contact-info__row svg, .contact-info__row i {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--bh-sky);
  margin-top: 2px;
}
.contact-info__row strong {
  display: block;
  font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info__row span, .contact-info__row a {
  font-size: 15px;
  color: rgba(255,255,255,.85);
}

.newsletter-card {
  margin-top: 1rem;
  padding: 24px;
  background: rgba(27,0,226,.08);
  border: 1px solid rgba(69,144,255,.2);
  border-radius: 16px;
}
.newsletter-card strong {
  display: block;
  font-size: 12px; letter-spacing: 2px;
  color: var(--bh-sky);
  margin-bottom: 8px;
}
.newsletter-card p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.newsletter-card form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-row { display: flex; gap: 8px; }
.newsletter-row input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
}
.pk-gdpr--nl { font-size: .72rem; padding: 0; align-items: flex-start; }
.pk-gdpr--nl input { width: 16px; height: 16px; }
/* Inline validácia — chybné pole (#5 error prevention) */
input.is-invalid { border-color: #ff6b6b !important; box-shadow: 0 0 0 1px rgba(255,107,107,.45); }

/* EN auto-ponuka pásik (#7 flexibility) — bez backdrop-filter (re-blur jank pri scrolle) */
.lang-offer {
  position: fixed; left: 50%; top: 68px; transform: translate(-50%, -180%);
  z-index: 890;   /* /quieter: POD modalmi (room-modal 900, contact-modal 1000) — pásik nikdy nad otvoreným modalom */
  display: flex; align-items: center; gap: 12px;
  padding: 9px 10px 9px 16px;
  background: #0b1730; border: 1px solid rgba(69,144,255,.3); border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  font-size: 13px; color: rgba(255,255,255,.85);
  opacity: 0; transition: transform .34s cubic-bezier(.22,1,.36,1), opacity .34s;
  max-width: calc(100vw - 32px);
}
.lang-offer.is-in { transform: translate(-50%, 0); opacity: 1; }
.lang-offer a { color: var(--bh-sky); font-weight: 600; text-decoration: none; white-space: nowrap; }
.lang-offer a:hover { text-decoration: underline; }
.lang-offer button { background: none; border: 0; color: rgba(255,255,255,.55); cursor: pointer; font-size: 15px; line-height: 1; padding: 4px 6px; border-radius: 50%; }
.lang-offer button:hover { color: #fff; }

/* "Ako to prebieha" 3 kroky (#10 help & documentation) */
.how-steps { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 20px 0 26px; padding: 0; }
.how-steps--wide { flex-direction: row; gap: 20px; max-width: var(--content-max); margin: 8px auto 32px; }
.how-step { display: flex; align-items: flex-start; gap: 12px; flex: 1; }
.how-step__n { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 14px; color: #fff; background: rgba(69,144,255,.18); border: 1px solid rgba(69,144,255,.45); }
.how-step > div { display: flex; flex-direction: column; gap: 2px; }
.how-step strong { font-size: 14px; color: #fff; }
.how-step span { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.4; }
@media (max-width: 720px) { .how-steps--wide { flex-direction: column; } }

/* 360° loading spinner (#1 visibility of status) */
#roomPannellumWrap { position: relative; }
.pano-loading { position: absolute; inset: 0; display: grid; place-items: center; background: #05070f; z-index: 3; }
.pano-loading[hidden] { display: none; }
.pano-spinner { width: 42px; height: 42px; border-radius: 50%; border: 3px solid rgba(255,255,255,.15); border-top-color: var(--bh-sky, #4590ff); animation: pano-spin .8s linear infinite; }
@keyframes pano-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .pano-spinner { animation-duration: 1.8s; } }

/* Scroll brána — legalizácia odporu: „pokračujte ↓" cue keď narazíš na magnetickú bránu */
.gate-cue {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 12px);
  z-index: 60; pointer-events: none;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: rgba(255,255,255,.66); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  opacity: 0; transition: opacity .3s ease, transform .3s ease;
}
.gate-cue.is-in { opacity: 1; transform: translate(-50%, 0); animation: gateCueBounce 1.6s ease-in-out infinite; }
.gate-cue svg { width: 18px; height: 18px; stroke: rgba(255,255,255,.5); }
@keyframes gateCueBounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }
@media (prefers-reduced-motion: reduce) { .gate-cue.is-in { animation: none; } }

/* Jednorazový hint na klávesové skratky (#7 discoverability) — len desktop */
.kbd-hint {
  position: fixed; left: 20px; bottom: 20px; z-index: 55;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px 10px 16px;
  background: #0b1730; border: 1px solid rgba(69,144,255,.28); border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.4);
  font-size: 12.5px; color: rgba(255,255,255,.82);
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease; max-width: calc(100vw - 40px);
}
.kbd-hint.is-in { opacity: 1; transform: translateY(0); }
.kbd-hint b { color: var(--bh-sky); font-weight: 700; padding: 1px 5px; margin: 0 1px; border: 1px solid rgba(69,144,255,.4); border-radius: 5px; font-size: 11px; }
.kbd-hint button { background: none; border: 0; color: rgba(255,255,255,.55); cursor: pointer; font-size: 14px; line-height: 1; padding: 4px; }
.kbd-hint button:hover { color: #fff; }
@media (max-width: 767px) { .kbd-hint { display: none; } }

/* Keycap čipy skratiek — jemne sa objavia pri hover na topbar navigáciu (#7 discoverability).
   Trvalá, nenápadná alternatíva k jednorazovému .kbd-hint toastu + pomalému natívnemu title. */
.bh-topbar__link[data-key] { position: relative; }
.bh-topbar__link[data-key]::after {
  content: attr(data-key);
  position: absolute; top: -7px; right: -7px;
  min-width: 14px; height: 14px; padding: 0 3px; box-sizing: border-box;
  font-size: 9px; font-weight: 700; line-height: 13px; text-align: center;
  color: var(--bh-sky); background: rgba(11,23,48,.92);
  border: 1px solid rgba(69,144,255,.4); border-radius: 4px;
  opacity: 0; transform: translateY(2px);
  transition: opacity .2s ease, transform .2s ease; pointer-events: none;
}
.bh-topbar__links:hover .bh-topbar__link[data-key]::after { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .bh-topbar__link[data-key]::after { transition: none; } }
@media (hover: none), (max-width: 767px) { .bh-topbar__link[data-key]::after { display: none; } }

/* 360 panoráma — chybový stav (načítanie zlyhalo) namiesto tichého prázdna */
.pano-error {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 3; max-width: 320px; padding: 0 20px; text-align: center;
  color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.5;
}

/* „← Domov" pill — v navbare vedľa Events, viditeľný len počas flow (#3 user control) */
.hub-pill {
  display: none; align-items: center; gap: 6px;
  padding: 6px 13px 6px 10px; margin-right: 2px;
  background: rgba(69,144,255,.12); border: 1px solid rgba(69,144,255,.32); border-radius: 999px;
  color: rgba(255,255,255,.92); font-family: inherit; font-size: 13px; font-weight: 600; letter-spacing: .01em;
  cursor: pointer; transition: background .2s, transform .12s;
}
.hub-pill.is-visible { display: inline-flex; animation: hubPillIn .28s var(--ease-out); }
@keyframes hubPillIn { from { opacity: 0; transform: translateX(-6px); } to { opacity: 1; transform: none; } }
@media (hover: hover) { .hub-pill:hover { background: rgba(69,144,255,.24); } }
.hub-pill:active { transform: scale(.95); }
.hub-pill__arrow { font-size: 15px; line-height: 1; }
/* mobil: topbar je už na hrane (logo+4 linky+EN) → pill skrytý; návrat domov = tap na logo,
   a na mobile aj tak nie je žiadny lock (voľný scroll), takže pill netreba */
/* Mobil: „← Domov" pill sa zobrazuje aj tu (parita s desktopom) — s hamburgerom je miesto.
   Jemne kompaktnejší, nech sadne aj vedľa loga + hamburgeru na 375px. */
@media (max-width: 767px) {
  .hub-pill { padding: 6px 10px 6px 9px; font-size: 12px; }
  .hub-pill__label { font-size: 12px; }
  .hub-pill__arrow { font-size: 14px; }
}

/* ═══ Footer ═══ */
.house-footer {
  background: #020F26;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
}
.house-footer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.house-footer__brand strong {
  display: block;
  font-size: 14px; letter-spacing: 3px;
  font-weight: 700; margin-bottom: 8px;
}
.house-footer__brand p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  max-width: 280px;
  line-height: 1.6;
}
.house-footer__col strong {
  display: block;
  font-size: 11px; letter-spacing: 2px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.house-footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 8px;
  transition: color .2s;
}
.house-footer__col a:hover { color: #fff; }
.house-footer__bottom {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

/* ═══ Card overrides for House (text on glass) ═══ */
/* Use card-glass with light text — for House sekciu so dark bg, swap to text-on-dark */
.card-glass-dark {
  background: rgba(3,28,64,.4);
  border: 1px solid rgba(69,144,255,.25);
  border-radius: 20px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    inset 0 4px 20px rgba(69,144,255,.08),
    inset 0 -2px 8px rgba(0,0,0,.2),
    0 8px 32px rgba(0,0,0,.3);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .3s;
}
.card-glass-dark:hover {
  transform: translateY(-4px);
  border-color: rgba(69,144,255,.45);
  box-shadow:
    inset 0 4px 24px rgba(69,144,255,.12),
    0 16px 48px rgba(0,87,255,.18);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .section { padding: 3rem 1.25rem; }
  .house-hero { padding: 120px 20px 60px; }
  .house-nav { padding: 12px 20px; }
  .house-nav__links { display: none; }
  .house-stats { grid-template-columns: repeat(2, 1fr); }
  .section-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .section-split.is-reverse .section-split__media { order: 0; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .house-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-aurora .blob { width: 280px !important; height: 280px !important; }
}

/* ============================================
   REDUCED MOTION — rešpektuj systémové „obmedziť pohyb"
   House blok má najviac pohybu (kinetic glow, parallax, split-text,
   plávajúce mesh blobs). Tu ho neutralizujeme; JS-riadený scroll-lag
   a kinetic glow sa vypína cez REDUCE_MOTION guard v index.html.
   (Pinned horizontálna galéria ostáva — je to navigácia, nie ozdoba.)
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  /* Nekonečné ambientné animácie preč */
  .bh-global-bg__mesh .dot,
  .liquid-blob,
  .hero-aurora .blob,
  [class*="g-deep-ocean"] .dot,
  [class*="g-sapphire"] .dot { animation: none !important; }

  /* Reveal / stagger → ihneď viditeľné, žiadny posun ani fade */
  .reveal, .reveal.visible,
  .stagger > .si, .stagger.visible > .si,
  .reveal-stagger, .reveal-stagger.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .reveal-stagger.visible .section-label,
  .reveal-stagger.visible .section-title,
  .reveal-stagger.visible .section-desc { animation: none !important; }

  /* Split-heading znaky → rovno na mieste, žiadny 3D flip */
  .split-heading .char {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Scroll-lag vrstvy → žiadny pohyb (JS ich už nepočíta) */
  .scroll-lag { transition: none !important; }
}

/* ============================================
   FOOTER (PR4Gk) — vytiahnuté z inline štýlov
   ============================================ */
.bh-footer {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  /* BH Midnight Pulse — azúrový glow vpravo hore (z Pencil V2) */
  background:
    radial-gradient(85% 130% at 82% 4%, rgba(0,87,255,0.34) 0%, rgba(0,87,255,0) 60%),
    var(--bh-dark);
}

/* ── CTA pruh ── */
.bh-footer__cta {
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; padding: 48px 80px;
}
.bh-footer__cta-copy { display: flex; flex-direction: column; gap: 8px; max-width: 620px; }
.bh-footer__cta-title { font-size: clamp(1.3rem, 2.4vw, 1.625rem); font-weight: 700; line-height: 1.2; color: #fff; margin: 0; }
.bh-footer__cta-sub { font-size: 15px; color: rgba(255,255,255,0.7); margin: 0; }
.bh-footer__cta-btn {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  padding: 15px 28px; border-radius: 999px;
  background: var(--bh-azure, var(--azure-blue)); color: #fff;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: background .25s ease, gap .25s ease, transform .25s cubic-bezier(.16,1,.3,1);
}
.bh-footer__cta-btn svg { width: 18px; height: 18px; transition: transform .25s ease; }
.bh-footer__cta-btn:hover { background: #1f6bff; gap: 14px; transform: translateY(-2px); }
.bh-footer__cta-btn:hover svg { transform: translateX(3px); }

/* ── Brand + stĺpce ── */
.bh-footer__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 80px; padding: 56px 80px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.bh-footer__brand { display: flex; flex-direction: column; gap: 24px; max-width: 360px; }
.bh-footer__logo { align-self: flex-start; width: 132px; height: auto; }
.bh-footer__tagline { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.7); margin: 0; }
.bh-footer__social { display: flex; gap: 18px; }
.bh-footer__social a { display: inline-flex; color: rgba(255,255,255,0.7); transition: color .2s ease, transform .25s cubic-bezier(.16,1,.3,1); }
.bh-footer__social a:hover { color: var(--sky-blue); transform: translateY(-3px); }
.bh-footer__social svg { width: 20px; height: 20px; }

.bh-footer__cols { display: flex; gap: 72px; }
.bh-footer__col { display: flex; flex-direction: column; gap: 16px; }
.bh-footer__col-head { font-size: 13px; font-weight: 700; letter-spacing: 0.5px; color: #fff; }
.bh-footer__links { display: flex; flex-direction: column; gap: 12px; }
.bh-footer__link { font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; transition: color .2s ease, transform .25s cubic-bezier(.16,1,.3,1); }
a.bh-footer__link:hover { color: #fff; transform: translateX(3px); }
.bh-footer__link--static { cursor: default; }

/* ── Spodný bar ── */
.bh-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 80px; border-top: 1px solid rgba(255,255,255,0.1);
}
.bh-footer__copy { font-size: 13px; color: rgba(255,255,255,0.5); }
.bh-footer__legal { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color .2s ease; }
.bh-footer__legal:hover { color: rgba(255,255,255,0.85); }

@media (prefers-reduced-motion: reduce) {
  .bh-footer__link:hover, .bh-footer__social a:hover, .bh-footer__cta-btn:hover { transform: none; }
}
@media (max-width: 860px) {
  .bh-footer__cta { flex-direction: column; align-items: flex-start; gap: 24px; padding: 40px 24px; }
  .bh-footer__top { flex-direction: column; gap: 40px; padding: 40px 24px; }
  .bh-footer__cols { gap: 40px; flex-wrap: wrap; }
  .bh-footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; padding: 20px 24px; }
}

/* ═══ TELEFÓN: zákaz horizontálneho panu (2026-07-05) ═══
   MUSÍ byť na konci house.css — vyššie je base body{overflow-x:hidden}, ktoré by inak vyhralo.
   KĽÚČOVÉ: hodnota `clip` (nie hidden!) — hidden+visible je neplatný pár → overflow-y sa
   promotne na auto → body sa stane scroll kontajnerom → rozbije position:sticky (pin galéria)
   aj window scroll. `clip` netvorí scroll kontajner. (Vydebugované headless testom.) */
@media (max-width: 767px) {
  html, body { overflow-x: clip; }
}

/* Prepínač jazyka v topbare (SK↔EN) */
.bh-topbar__lang { border-left: 1px solid rgba(255,255,255,.18); border-radius: 0 999px 999px 0; margin-left: 4px; padding-left: 12px !important; text-decoration: none; }

/* ═══ Cookie lišta (Consent Mode) ═══ */
.bh-cookiebar {
  position: fixed;
  right: 16px; bottom: 16px; left: auto;
  z-index: 5000;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  max-width: 400px;
  padding: 12px 16px;
  background: rgba(6, 18, 44, .97);   /* PERF: bez backdrop-filter — fixný blur = re-blur pri každom scroll frame (jank) */
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.45);
  opacity: 0; transform: translateY(12px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.bh-cookiebar.is-in { opacity: 1; transform: none; }
.bh-cookiebar p { margin: 0; font-size: 13px; color: rgba(255,255,255,.8); }
.bh-cookiebar a { color: var(--sky-blue); }
.bh-cookiebar__btns { display: flex; gap: 8px; }
.bh-cookiebar__btn {
  font: 700 11px/1 'Montserrat', sans-serif; letter-spacing: .06em; text-transform: uppercase;
  padding: 11px 18px; border-radius: 999px; border: none; cursor: pointer;
  background: var(--btn-grad-primary); color: #fff;
}
.bh-cookiebar__btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.85); }
@media (max-width: 640px) { .bh-cookiebar { left: 12px; right: 12px; max-width: none; padding: 10px 14px; gap: 8px; } .bh-cookiebar p { font-size: 12px; } .bh-cookiebar__btn { padding: 9px 14px; } }

/* ═══ PERF: content-visibility — odomknutie house bloku (O BUDOVE) nerozloží celý subtree ═══
   .gallery-pin má EXPLICITNÚ výšku (800vh/700vh) → skip obsahu nemení scrollbar ani scrub
   matematiku (JS číta len vlastný rect pinu). Pillars VYNECHANÉ (pillarSwap číta rect-y kariet).
   Sekcie nižšie majú intrinsic odhad — mimo viewportu sa nerenderujú, prípadný layout posun
   pri un-skipe je POD viewportom (užívateľ ho nevidí). */
.house-block .gallery-pin,
.house-block #workspace,
.house-block #faq,
.house-block #contact {
  content-visibility: auto;
}
.house-block #workspace { contain-intrinsic-size: auto 110vh; }
.house-block #faq       { contain-intrinsic-size: auto 130vh; }
.house-block #contact   { contain-intrinsic-size: auto 110vh; }
