/* ============================================================
   HSH GROUP — technický editorial
   Báza: papier/ink + jeden akcent. Hairline borders, ostré rohy,
   mono ako systémový prvok, asymetrický grid, žiadne tiene.
   ============================================================ */

:root {
  --paper: #FFFFFF;
  --ink: #16243A;
  --soft: #4C5A70;
  --faint: #64718A;
  --hairline: #E3E7EE;
  --hairline-dark: rgba(255, 255, 255, .16);
  --accent: #F9993B;
  --font: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --header-h: 86px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* typografické utility */
.label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--gutter); }

/* ------------------------------ tlačidlá ------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15.5px; font-weight: 600; letter-spacing: -.01em;
  padding: 16px 28px; border: 1px solid transparent; border-radius: 6px;
  cursor: pointer; text-decoration: none;
  transition: background .18s, color .18s, border-color .18s, transform .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn--solid { background: var(--ink); color: #fff; }
.btn--solid:hover { background: var(--accent); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: #fff; color: var(--ink); }
.btn--line { border-color: var(--hairline); color: var(--ink); background: transparent; }
.btn--line:hover { border-color: var(--ink); }
.btn--line-inv { border-color: var(--hairline-dark); color: #fff; background: transparent; }
.btn--line-inv:hover { border-color: var(--accent); color: var(--accent); }

/* ------------------------------ hlavička ------------------------------ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 18px; max-width: none;
}
.brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 16px; font-weight: 600;
  text-decoration: none; color: var(--soft);
  padding: 6px 0; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); border-bottom-color: var(--accent); }
.main-nav .nav-cta { color: var(--accent) !important; border-bottom-color: var(--accent); }

.lang-switch { display: flex; align-items: center; gap: 2px; }
.lang-switch a {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: .04em; text-decoration: none;
  color: var(--faint); padding: 7px 9px; border-radius: 6px;
  transition: color .15s, background .15s;
}
.lang-switch .flag { display: block; border-radius: 2px; outline: 1px solid rgba(0,0,0,.12); }
.lang-switch a:hover { background: rgba(0,0,0,.05); color: var(--ink); }
.lang-switch a.active { color: var(--accent); }

.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--hairline);
  width: 42px; height: 42px; cursor: pointer; color: var(--ink);
  align-items: center; justify-content: center;
}
@media (max-width: 1020px) {
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--paper); border-bottom: 1px solid var(--hairline);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--gutter) 20px;
    transform: translateY(-110%); opacity: 0; visibility: hidden;
    transition: transform .26s cubic-bezier(.16,.84,.44,1), opacity .2s, visibility .26s;
  }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav a { padding: 15px 0; border-bottom: 1px solid var(--hairline) !important; color: var(--ink) !important; font-size: 13px; }
  .nav-toggle { display: inline-flex; }
}

/* ------------------------------ hero ------------------------------ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  background: var(--ink); color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-fallback {
  position: absolute; inset: 0;
  background: var(--ink) url('../img/hero-poster.jpg') center / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 24% 62%, rgba(13,20,35,.66), transparent 70%),
    linear-gradient(to top, rgba(13,20,35,.6) 0%, rgba(13,20,35,.22) 45%, rgba(13,20,35,.28) 100%);
}
.hero .container {
  position: relative; z-index: 2; width: 100%;
  padding-top: calc(var(--header-h) + 30px);
  padding-bottom: 50px;
}
.hero-meta {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,.78); margin-bottom: 22px;
}
.hero-meta::before { content: ""; width: 44px; height: 1px; background: var(--accent); }
.hero h1 {
  font-size: clamp(46px, 7vw, 112px);
  font-weight: 600; letter-spacing: -.032em; line-height: .98;
  max-width: 12ch;
}
.hero h1 em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: clamp(3px, .45vw, 7px);
  text-underline-offset: clamp(5px, .8vw, 12px);
}
.hero-sub {
  margin-top: 26px; font-size: clamp(17px, 2.1vw, 21px);
  color: rgba(255,255,255,.78); max-width: 38ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* ------------------------------ sekcie / editorial hlavičky ------------------------------ */
.section { padding: clamp(80px, 11vw, 150px) 0; }
.sec-head { max-width: 780px; margin-bottom: clamp(36px, 5vw, 60px); }
.sec-index { display: block; color: var(--faint); margin-bottom: 14px; }
.sec-index b { color: var(--accent); font-weight: 600; }
.sec-head h2 {
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 600; letter-spacing: -.026em; line-height: 1.06;
}
.sec-head p { margin-top: 14px; font-size: 16px; color: var(--soft); line-height: 1.6; }
.dark .sec-index { color: rgba(255,255,255,.45); }
.dark .sec-head p { color: rgba(255,255,255,.68); }

/* ------------------------------ štatistiky ------------------------------ */
.stats { border-bottom: 1px solid var(--hairline); }
.stats-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat { padding: clamp(28px, 4vw, 48px) 24px; text-align: center; border-bottom: 1px solid var(--hairline); }
.stat:last-child { border-bottom: none; }
@media (min-width: 720px) {
  .stat { border-bottom: none; border-right: 1px solid var(--hairline); }
  .stat:last-child { border-right: none; }
}
.st-num { font-size: clamp(48px, 5.6vw, 76px); font-weight: 600; letter-spacing: -.04em; line-height: 1; color: var(--accent); }
.st-num small { font-size: .45em; font-weight: 600; color: var(--ink); }
.st-lbl { margin-top: 12px; font-size: 15px; font-weight: 500; color: var(--ink); }

/* ------------------------------ služby ------------------------------ */
.svc-band {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 4vw, 56px); align-items: center;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.svc-band__media { position: relative; overflow: hidden; aspect-ratio: 16 / 11; }
.svc-band__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.16,.84,.44,1); }
.svc-band:hover .svc-band__media img { transform: scale(1.03); }
.svc-band--right .svc-band__media { grid-column: 6 / 13; grid-row: 1; }
.svc-band--right .svc-band__text { grid-column: 1 / 6; grid-row: 1; }
.svc-band--left .svc-band__media { grid-column: 1 / 8; grid-row: 1; }
.svc-band--left .svc-band__text { grid-column: 8 / 13; grid-row: 1; }
.svc-band__text .label { color: var(--accent); display: block; margin-bottom: 12px; }
.svc-band__text h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; letter-spacing: -.02em; line-height: 1.1; }
.svc-band__text p { margin-top: 12px; font-size: 15px; color: var(--soft); line-height: 1.65; }
.checklist { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.checklist svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 860px) {
  .svc-band { display: block; }
  .svc-band__text { margin-top: 20px; }
}
.svc-cards { display: grid; gap: clamp(20px, 3vw, 32px); grid-template-columns: 1fr; }
@media (min-width: 760px) { .svc-cards { grid-template-columns: repeat(3, 1fr); } }
.svc-card__media { position: relative; overflow: hidden; margin-bottom: 16px; aspect-ratio: 16 / 10; }
.svc-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,.84,.44,1); }
.svc-card:hover .svc-card__media img { transform: scale(1.04); }
.svc-card { display: flex; flex-direction: column; }
.svc-card h3 { font-size: 20px; font-weight: 600; letter-spacing: -.015em; }
.svc-card p { margin-top: 8px; font-size: 14px; color: var(--soft); line-height: 1.6; }

/* ------------------------------ technológie (tmavá, rail) ------------------------------ */
.dark { background: var(--ink); color: #fff; }
.tech-rail-wrap { position: relative; }
.tech-rail {
  display: flex; gap: 1px;
  background: var(--hairline-dark);
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; cursor: grab;
}
.tech-rail::-webkit-scrollbar { display: none; }
.tech-rail.dragging { cursor: grabbing; scroll-snap-type: none; }
.road-card {
  scroll-snap-align: start;
  flex: 0 0 min(400px, 84vw);
  background: var(--ink);
  display: flex; flex-direction: column;
}
.road-card .media {
  aspect-ratio: 4 / 3; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.28);
  border-bottom: 1px solid var(--hairline-dark);
}
.road-card .media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.road-card .media--fit { background: #0E1626; }
.road-card .media--fit img {
  object-fit: contain; padding: 12px;
  transition: transform .7s cubic-bezier(.16,.84,.44,1);
}
.road-card:hover .media img { transform: scale(1.05); }
.road-card .body { padding: 20px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.road-card .step { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; color: var(--accent); margin-bottom: 10px; font-weight: 600; }
.road-card h3 { font-size: 18px; font-weight: 600; letter-spacing: -.012em; }
.road-card p { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,.68); line-height: 1.6; flex: 1; }
.road-card .link {
  margin-top: 14px; font-family: var(--mono); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
}
.road-card .link:hover { text-decoration: underline; text-underline-offset: 4px; }
.tech-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 22px; }
.tech-progress { flex: 1; height: 1px; background: var(--hairline-dark); overflow: hidden; }
.tech-progress > div { height: 100%; width: 0; background: var(--accent); transition: width .2s; }
.tech-nav { display: flex; gap: 1px; background: var(--hairline-dark); border: 1px solid var(--hairline-dark); }
.tech-nav button {
  width: 46px; height: 46px; border: 0; background: var(--ink);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color .15s;
}
.tech-nav button:hover { color: var(--accent); }
.tech-nav button:disabled { opacity: .3; cursor: default; }

/* ------------------------------ realizácie ------------------------------ */
.ref-tabs { display: flex; gap: 28px; margin-bottom: 34px; border-bottom: 1px solid var(--hairline); }
.ref-tabs button {
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .1em; color: var(--faint);
  padding: 0 2px 14px; margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.ref-tabs button:hover { color: var(--ink); }
.ref-tabs button.active { color: var(--ink); border-bottom-color: var(--accent); }
.proj-grid { display: grid; gap: clamp(18px, 2.6vw, 28px); grid-template-columns: 1fr; }
@media (min-width: 640px) { .proj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .proj-grid { grid-template-columns: repeat(3, 1fr); } }
.proj-card { display: block; text-decoration: none; }
.proj-card__media { display: block; position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.proj-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,.84,.44,1); }
.proj-card:hover .proj-card__media img { transform: scale(1.04); }
.proj-card__body { display: block; padding: 14px 2px 0; }
.proj-card__body .label { color: var(--accent); }
.proj-card__name { display: block; margin-top: 6px; font-size: 17px; font-weight: 600; letter-spacing: -.012em; transition: color .15s; min-height: 2.6em; }
.proj-card:hover .proj-card__name { color: var(--accent); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(13, 20, 35, .94);
  display: none; align-items: center; justify-content: center;
  padding: 28px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 86vh; }
.lightbox .lb-cap {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.75); font-family: var(--mono); font-size: 11.5px;
  letter-spacing: .06em; text-transform: uppercase;
}
.lightbox button {
  position: absolute; width: 46px; height: 46px;
  border: 1px solid var(--hairline-dark); background: transparent;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, color .15s;
}
.lightbox button:hover { border-color: var(--accent); color: var(--accent); }
.lightbox .lb-close { top: 20px; right: 20px; }
.lightbox .lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ------------------------------ kalkulačka band ------------------------------ */
.calc-band { border-top: 1px solid var(--hairline-dark); border-bottom: 1px solid var(--hairline-dark); }
.calc-band .container {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 24px; align-items: center;
  padding-top: clamp(56px, 8vw, 110px); padding-bottom: clamp(56px, 8vw, 110px);
}
.calc-band__num { grid-column: 1 / 7; position: relative; }
.calc-band__icon { display: block; color: var(--accent); opacity: .9; margin-bottom: 22px; }
.calc-band__icon svg { width: clamp(64px, 7vw, 110px); height: auto; }
.calc-band__num .cb-val { color: var(--accent);
  font-family: var(--mono); font-weight: 600;
  font-size: clamp(56px, 7vw, 104px);
  letter-spacing: -.05em; line-height: .95;
}
.calc-band__num .cb-lbl { margin-top: 14px; color: rgba(255,255,255,.55); }
.calc-band__body { grid-column: 8 / 13; }
.calc-band__body h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 600; letter-spacing: -.024em; line-height: 1.05; }
.calc-band__body p { margin-top: 14px; font-size: 15px; color: rgba(255,255,255,.66); }
.calc-band__body .btn { margin-top: 26px; }
@media (max-width: 860px) {
  .calc-band .container { display: block; }
  .calc-band__body { margin-top: 30px; }
}

/* ------------------------------ monitoring ------------------------------ */
.monitor { border-top: 1px solid var(--hairline); }
.monitor .container {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 24px; align-items: center;
}
.monitor__body { grid-column: 1 / 6; }
.monitor__body h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 600; letter-spacing: -.026em; line-height: 1.06; }
.monitor__body .mon-line { margin-top: 18px; font-size: 15.5px; color: var(--soft); max-width: 44ch; }
.monitor__body .label { color: var(--accent); display: block; margin-bottom: 16px; }
.mon-steps { list-style: none; counter-reset: ms; margin-top: 22px; display: grid; gap: 14px; }
.mon-steps li { counter-increment: ms; display: grid; grid-template-columns: 34px 1fr; gap: 4px 14px; align-items: baseline; }
.mon-steps li::before {
  content: counter(ms, decimal-leading-zero);
  grid-row: span 2;
  font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--accent);
  border: 1px solid var(--hairline); width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center; align-self: start;
}
.mon-steps b { font-size: 15px; font-weight: 600; }
.mon-steps span { font-size: 13.5px; color: var(--soft); }
.monitor__body .btn { margin-top: 28px; }
.monitor__visual { grid-column: 7 / 13; display: flex; justify-content: center; background: var(--ink); padding: clamp(28px, 4vw, 56px) 0; }
@media (max-width: 860px) {
  .monitor .container { display: block; }
  .monitor__visual { margin-top: 34px; }
}
/* telefón — zaoblenie ostáva, je to fyzický objekt */
.phone-mock {
  width: min(230px, 64%);
  border-radius: 34px; border: 6px solid #233148;
  background: #0C1424; padding: 18px 14px; color: #fff;
}
.phone-mock .notch { width: 74px; height: 5px; border-radius: 99px; background: #233148; margin: 0 auto 14px; }
.phone-mock .app-title { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.62); }
.phone-mock .kwh { font-family: var(--mono); font-size: 26px; font-weight: 600; color: var(--accent); margin-top: 4px; }
.phone-mock .kwh small { font-size: 12px; color: rgba(255,255,255,.66); }
.phone-mock .bars { display: flex; align-items: flex-end; gap: 4px; height: 64px; margin-top: 16px; }
.phone-mock .bars i { flex: 1; background: var(--accent); animation: barRise 1.1s cubic-bezier(.16,.84,.44,1) both; transform-origin: bottom; }
@keyframes barRise { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.phone-mock .stat-row { display: flex; justify-content: space-between; font-size: 10px; color: rgba(255,255,255,.7); margin-top: 14px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.12); }
.phone-mock .stat-row b { color: #fff; font-family: var(--mono); display: block; font-size: 12px; margin-top: 2px; }

/* ------------------------------ kontakt ------------------------------ */
.contact { border-top: 1px solid var(--hairline); }
.contact .container {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
}
.contact__info { grid-column: 1 / 5; }
.contact__form { grid-column: 6 / 13; }
@media (max-width: 920px) {
  .contact .container { display: block; }
  .contact__form { margin-top: 44px; }
}
.contact__info h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 600; letter-spacing: -.026em; line-height: 1.06; }
.contact__lead { margin: 14px 0 30px; font-size: 15px; color: var(--soft); line-height: 1.6; max-width: 44ch; }
.contact__info .label { color: var(--accent); display: block; margin-bottom: 16px; }
.ci-row { padding: 16px 0; border-top: 1px solid var(--hairline); }
.ci-row .label { color: var(--faint); margin-bottom: 5px; }
.ci-row .val { font-size: 17px; font-weight: 600; }
.ci-row .val a { text-decoration: none; }
.ci-row .val a:hover { color: var(--accent); }
.ci-row .sub { font-size: 13px; color: var(--soft); margin-top: 2px; }

.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block; margin-bottom: 7px;
  font-family: var(--mono); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: .1em; color: var(--soft);
}
.field label b { color: var(--accent); }
.fin {
  width: 100%; background: transparent;
  border: 1px solid var(--hairline);
  padding: 13px 14px; color: var(--ink);
  font-size: 15px; font-family: inherit; outline: none;
  transition: border-color .15s;
}
.fin:focus { border-color: var(--ink); }
textarea.fin { resize: vertical; min-height: 130px; }
.gdpr {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12.5px; color: var(--soft);
  margin: 18px 0 22px; cursor: pointer;
}
.gdpr input { margin-top: 3px; accent-color: var(--accent); width: 15px; height: 15px; flex-shrink: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.fin--file { padding: 10px 12px; }
.fin--file::file-selector-button {
  font-family: inherit; font-size: 13px; font-weight: 600;
  background: var(--ink); color: #fff; border: 0; border-radius: 4px;
  padding: 8px 14px; margin-right: 12px; cursor: pointer;
}
.form-msg { margin-top: 14px; font-size: 13.5px; display: none; }
.form-msg.ok { display: block; color: #2E7D43; font-weight: 600; }
.form-msg.err { display: block; color: #C04B2A; }

/* ------------------------------ pätička ------------------------------ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.62); }
.footer-top {
  display: grid; gap: 40px; padding: 64px 0 52px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .footer-top { grid-template-columns: 4fr 2fr 2fr 2fr; } }
.site-footer .brand img { height: 32px; }
.footer-about { font-size: 13.5px; line-height: 1.6; margin-top: 18px; max-width: 34ch; }
.footer-col h4 {
  color: rgba(255,255,255,.45); font-family: var(--mono);
  font-size: 10.5px; font-weight: 500; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { color: rgba(255,255,255,.66); text-decoration: none; font-size: 14px; transition: color .14s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--hairline-dark);
  padding: 20px 0; display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* ------------------------------ podstránky (aktuality) ------------------------------ */
.page-hero { background: var(--ink); color: #fff; padding: calc(var(--header-h) + 64px) 0 56px; }
.page-hero .label, .page-hero .eyebrow { display: block; margin-bottom: 14px; font-family: var(--mono); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); }
.page-hero h1 { font-size: clamp(34px, 5.4vw, 64px); font-weight: 600; letter-spacing: -.03em; line-height: 1.0; }
.page-hero p { margin-top: 16px; color: rgba(255,255,255,.7); max-width: 54ch; font-size: 15.5px; }
.linkedin-feed { min-height: 460px; }


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .phone-mock .bars i { animation: none; }
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 10px 16px;
  font-family: var(--mono); font-size: 12px;
}
.skip-link:focus { left: 0; }
@media print {
  .site-header, .site-footer, .hero-actions { display: none !important; }
}

/* header tools wrapper */
.header-tools { display: flex; align-items: center; gap: 14px; }

/* phone bary — výšky dňa */
.phone-mock .b1{height:18%;animation-delay:.05s}.phone-mock .b2{height:32%;animation-delay:.1s}
.phone-mock .b3{height:48%;animation-delay:.15s}.phone-mock .b4{height:64%;animation-delay:.2s}
.phone-mock .b5{height:82%;animation-delay:.25s}.phone-mock .b6{height:95%;animation-delay:.3s}
.phone-mock .b7{height:88%;animation-delay:.35s}.phone-mock .b8{height:70%;animation-delay:.4s}
.phone-mock .b9{height:52%;animation-delay:.45s}.phone-mock .b10{height:34%;animation-delay:.5s}
.phone-mock .b11{height:16%;animation-delay:.55s}

/* bleed v gridoch — médium drží výšku bandu */
.svc-band__media img { min-height: 100%; }

/* ------------------------------ o nás ------------------------------ */
.about { border-bottom: 1px solid var(--hairline); }
.about__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.about__text { grid-column: 1 / 7; }
.about__text h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; letter-spacing: -.024em; line-height: 1.08; }
.about__text p { margin-top: 16px; font-size: 16px; color: var(--soft); line-height: 1.7; }
.about__text .sec-index { display: block; color: var(--accent); margin-bottom: 14px; }
.about__media { grid-column: 7 / 13; position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.about__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .about__grid { display: block; } .about__media { margin-top: 22px; } }

/* ------------------------------ dotácie ------------------------------ */
.grants { background: #F4F6FA; border-bottom: 1px solid var(--hairline); }
.grants__grid { display: grid; gap: clamp(16px, 2.4vw, 28px); grid-template-columns: 1fr; }
@media (min-width: 760px) { .grants__grid { grid-template-columns: repeat(3, 1fr); } }
.grant-card { background: #fff; border: 1px solid var(--hairline); padding: 26px 26px 30px; }
.grant-card__num { display: block; font-size: 13px; font-weight: 600; color: var(--accent); margin-bottom: 14px; }
.grant-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -.015em; }
.grant-card p { margin-top: 10px; font-size: 14.5px; color: var(--soft); line-height: 1.6; }
.grants__cta { margin-top: 30px; }

/* ------------------------------ footer legal ------------------------------ */
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }

/* ------------------------------ cookie lišta ------------------------------ */
.cookiebar {
  position: fixed; z-index: 300;
  left: 16px; right: 16px; bottom: 16px;
  margin: 0 auto; max-width: 720px;
  background: var(--ink); color: #fff;
  padding: 18px 20px;
  display: flex; flex-wrap: wrap; gap: 14px 22px;
  align-items: center; justify-content: space-between;
}
.cookiebar p { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,.85); max-width: 52ch; }
.cookiebar a { color: var(--accent); }
.cookiebar__actions { display: flex; gap: 10px; }
.cookiebar .btn { padding: 11px 18px; font-size: 13.5px; }
.cookiebar .btn--line { border-color: var(--hairline-dark); color: #fff; }
.cookiebar .btn--line:hover { border-color: #fff; }

/* ------------------------------ právne stránky ------------------------------ */
.legal { padding: calc(var(--header-h) + 56px) 0 90px; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 700; letter-spacing: -.024em; margin-bottom: 10px; }
.legal__updated { font-family: var(--mono); font-size: 12px; color: var(--faint); margin-bottom: 28px; }
.legal h2 { font-size: 20px; font-weight: 700; margin: 30px 0 10px; }
.legal p, .legal li { font-size: 15px; color: var(--soft); line-height: 1.7; }
.legal ul { padding-left: 20px; display: grid; gap: 8px; }
.legal a { color: var(--accent); }
