/* NOZA — štýly webu. Jedna paleta odvodená z loga (tyrkys → tmavý petrol), písmo Archivo
   (variabilné, vlastný hosting kvôli GDPR v Nemecku), pohyb len cez transform/opacity. */

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url("fonts/archivo-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url("fonts/archivo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --brand-950: #041c22;
  --brand-900: #063947;   /* tmavý petrol z loga */
  --brand-800: #084c5e;
  --brand-700: #0a6d85;   /* tlačidlá: 5,6:1 na bielej */
  --brand-500: #0b9cbb;   /* stredný tyrkys z loga */
  --brand-400: #19b7d6;   /* zvýraznenia na tmavom */
  --brand-100: #d5eef4;
  --brand-50: #eef8fa;
  --paper: #f3f6f7;
  --white: #ffffff;
  --ink: #0e1f24;
  --text: #223339;
  --muted: #4c5f66;
  --line: #d9e1e4;
  --on-dark: #dfeaee;
  --on-dark-muted: #9fb6bd;
  --sans: "Archivo", "Segoe UI", Roboto, system-ui, sans-serif;
  --radius: 14px;
  --shadow: 0 18px 50px -24px rgba(6, 57, 71, .45);
  --wrap: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-700); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--brand-900); }
h1, h2, h3, h4 { margin: 0; line-height: 1.08; color: var(--ink); font-weight: 780; letter-spacing: -.022em; font-stretch: 108%; }
h1 { font-size: clamp(2.5rem, 6.2vw, 5rem); line-height: 1; letter-spacing: -.03em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--brand-400); outline-offset: 3px; }
.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 100; padding: .6rem 1rem;
  background: var(--brand-900); color: #fff; border-radius: 8px;
}
.skip:focus { top: 1rem; }

.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section.tight { padding-block: clamp(3rem, 6vw, 5rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  margin: 0 0 1rem; font-size: .8rem; font-weight: 650; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brand-700); font-stretch: 92%;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: var(--muted); max-width: 46ch; }
.head { display: grid; gap: .8rem; max-width: 62ch; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.head.center { margin-inline: auto; text-align: center; }
.head.center .eyebrow { justify-content: center; }
.head.center .lead { margin-inline: auto; }

/* ---- tlačidlá ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 3.1rem; padding: .75rem 1.5rem; border-radius: 999px;
  font-weight: 650; text-decoration: none; border: 2px solid transparent;
  transition: transform .25s var(--ease), background-color .25s, color .25s, border-color .25s;
  cursor: pointer;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand-700); color: #fff; }
.btn-primary:hover { background: var(--brand-900); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(14, 31, 36, .25); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.on-dark .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .45); }
.on-dark .btn-ghost:hover { border-color: #fff; color: #fff; }
.on-dark .btn-primary { background: var(--brand-500); }
.on-dark .btn-primary:hover { background: var(--brand-400); color: var(--brand-950); }

/* ---- hlavička ---- */
.top {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding-block: .9rem;
  color: #fff;
  transition: background-color .3s, box-shadow .3s, color .3s, padding .3s;
}
.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: inherit; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand strong { font-size: 1.25rem; letter-spacing: -.02em; font-stretch: 112%; font-weight: 800; }
.brand small { display: block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; opacity: .78; font-weight: 600; margin-top: -.15rem; }
.nav { display: flex; align-items: center; gap: clamp(.6rem, 1.6vw, 1.5rem); }
.nav a { color: inherit; text-decoration: none; font-weight: 600; font-size: .95rem; padding: .35rem .2rem; position: relative; }
.nav a::after {
  content: ""; position: absolute; left: .2rem; right: .2rem; bottom: 0; height: 2px;
  background: var(--brand-400); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
.nav .btn { min-height: 2.6rem; padding: .5rem 1.15rem; margin-left: .4rem; }
.lang { display: inline-flex; border: 1.5px solid rgba(255, 255, 255, .5); border-radius: 999px; padding: 3px; margin-left: .4rem; }
.lang a { padding: .25rem .65rem; border-radius: 999px; font-size: .8rem; font-weight: 700; letter-spacing: .08em; }
.lang a::after { display: none; }
.lang a[aria-current="true"] { background: #fff; color: var(--brand-900); }
.top.is-solid { background: rgba(255, 255, 255, .94); color: var(--ink); box-shadow: 0 10px 30px -20px rgba(6, 57, 71, .5); padding-block: .55rem; backdrop-filter: blur(10px); }
.top.is-solid .lang { border-color: var(--line); }
.top.is-solid .lang a[aria-current="true"] { background: var(--brand-900); color: #fff; }
.top.is-solid .brand small { opacity: .7; }
.burger {
  display: none; width: 46px; height: 46px; border: 1.5px solid rgba(255, 255, 255, .5); border-radius: 12px;
  background: transparent; color: inherit; cursor: pointer; align-items: center; justify-content: center;
}
.burger span, .burger span::before, .burger span::after {
  display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px; position: relative; transition: transform .3s var(--ease), opacity .3s;
}
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.top.is-solid .burger { border-color: var(--line); }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---- hero ---- */
.hero {
  position: relative; min-height: min(92vh, 900px); display: grid; align-items: end;
  color: #fff; isolation: isolate; padding-block: clamp(7rem, 16vh, 9rem) clamp(2.5rem, 6vh, 4rem);
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 45%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 28, 34, .92) 0%, rgba(4, 28, 34, .72) 45%, rgba(4, 28, 34, .35) 100%),
    linear-gradient(0deg, rgba(4, 28, 34, .85) 0%, rgba(4, 28, 34, 0) 45%);
}
.hero .wrap { display: grid; gap: 2.5rem; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .8fr); align-items: end; }
.hero h1 { color: #fff; max-width: 14ch; }
.hero h1 em { font-style: normal; position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: ""; position: absolute; left: -.04em; right: -.04em; bottom: .06em; height: .18em; z-index: -1;
  background: var(--brand-500); transform: skewX(-12deg); opacity: .9;
}
.hero .lead { color: rgba(255, 255, 255, .84); margin-top: 1.4rem; max-width: 52ch; }
.hero .eyebrow { color: var(--brand-400); }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.spec {
  display: grid; gap: 0; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius); backdrop-filter: blur(12px); overflow: hidden;
}
.spec div { padding: 1rem 1.25rem; display: grid; gap: .15rem; }
.spec div + div { border-top: 1px solid rgba(255, 255, 255, .16); }
.spec dt { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-400); font-weight: 650; font-stretch: 92%; }
.spec dd { margin: 0; font-weight: 650; font-size: 1.02rem; color: #fff; }

/* ---- bežiaci pás ---- */
.strip { background: var(--brand-900); color: #fff; overflow: hidden; padding-block: .9rem; border-block: 1px solid rgba(255, 255, 255, .08); }
.strip-track { display: flex; gap: 3rem; width: max-content; animation: strip 38s linear infinite; }
.strip span { display: inline-flex; align-items: center; gap: 3rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .82rem; font-stretch: 96%; white-space: nowrap; }
.strip span i { width: 7px; height: 7px; background: var(--brand-400); border-radius: 50%; display: inline-block; }
@keyframes strip { to { transform: translateX(-50%); } }

/* ---- služby ---- */
.services { background: var(--paper); }
.cards { display: grid; gap: 1.4rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  display: grid; grid-template-rows: auto 1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card figure { margin: 0; aspect-ratio: 16 / 9; overflow: hidden; }
.card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover figure img { transform: scale(1.04); }
.card .body { padding: 1.5rem 1.6rem 1.7rem; display: grid; gap: .8rem; align-content: start; }
.card .num { font-size: .78rem; letter-spacing: .16em; color: var(--brand-700); font-weight: 700; font-stretch: 92%; }
.card p { color: var(--muted); margin: 0; }
.tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .4rem; }
.tags li { font-size: .78rem; font-weight: 600; padding: .3rem .7rem; border-radius: 999px; background: var(--brand-50); color: var(--brand-800); border: 1px solid var(--brand-100); }
.card.dark { background: var(--brand-900); color: var(--on-dark); border-color: transparent; background-image: radial-gradient(120% 90% at 100% 0%, rgba(25, 183, 214, .28), transparent 60%); }
.card.dark h3 { color: #fff; }
.card.dark p { color: var(--on-dark); }
.card.dark .num { color: var(--brand-400); }
.card.dark .tags li { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .14); }
.card.dark a.more { color: #fff; font-weight: 650; text-decoration: none; display: inline-flex; gap: .4rem; align-items: center; margin-top: .3rem; }
.card.dark a.more:hover { color: var(--brand-400); }

/* ---- prečo my ---- */
.why { background: var(--brand-950); color: var(--on-dark); position: relative; overflow: hidden; }
.why::before {
  content: ""; position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 64px 64px;
}
.why .wrap { position: relative; }
.why h2 { color: #fff; }
.why .eyebrow { color: var(--brand-400); }
.why .lead { color: var(--on-dark-muted); }
.pillars { display: grid; gap: 1.2rem; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 1rem; }
.pillar { padding: 1.6rem 1.5rem 1.7rem; border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius); background: rgba(255, 255, 255, .03); display: grid; gap: .8rem; align-content: start; }
.pillar .big { font-size: 3rem; line-height: 1; font-weight: 200; font-stretch: 118%; color: var(--brand-400); letter-spacing: -.03em; }
.pillar h3 { color: #fff; }
.pillar p { color: var(--on-dark-muted); margin: 0; }

/* ---- postup ---- */
.steps { display: grid; gap: 1.2rem; grid-template-columns: repeat(4, minmax(0, 1fr)); counter-reset: krok; position: relative; }
.step { position: relative; padding-top: 1.4rem; display: grid; gap: .6rem; align-content: start; }
.step::before {
  counter-increment: krok; content: "0" counter(krok);
  font-size: .8rem; letter-spacing: .16em; font-weight: 700; color: var(--brand-700); font-stretch: 92%;
}
.step::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--line); border-radius: 3px; }
.step.is-visible::after { background: linear-gradient(90deg, var(--brand-500), var(--brand-100)); }
.step p { color: var(--muted); margin: 0; }

/* ---- o nás ---- */
.about .wrap { display: grid; gap: clamp(2rem, 5vw, 4.5rem); grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; }
.about figure { margin: 0; position: relative; }
.about figure img { border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; box-shadow: var(--shadow); }
.facts {
  position: absolute; right: -1rem; bottom: 1.6rem; background: #fff; border-radius: 12px; padding: 1.1rem 1.3rem; display: grid; gap: .7rem;
  box-shadow: 0 20px 40px -20px rgba(6, 57, 71, .5); border: 1px solid var(--line); min-width: 240px;
}
.facts dt { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-700); font-weight: 700; font-stretch: 92%; }
.facts dd { margin: 0; font-weight: 650; color: var(--ink); }
.about .head { margin-bottom: 1.4rem; }
.about p { color: var(--muted); }
.check { display: grid; gap: .7rem; margin-top: 1.4rem; }
.check li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 550; color: var(--ink); }
.check li::before {
  content: ""; flex: 0 0 auto; width: 22px; height: 22px; margin-top: .15rem; border-radius: 50%;
  background: var(--brand-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a6d85' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 13px no-repeat;
}

/* ---- galéria ---- */
.gallery { background: var(--paper); }
.grid {
  display: grid; gap: .8rem; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 200px; grid-auto-flow: dense;
}
.grid a { position: relative; display: block; border-radius: 10px; overflow: hidden; background: var(--brand-900); }
.grid a img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .4s; }
.grid a:hover img { transform: scale(1.05); }
.grid a.tall { grid-row: span 2; }
.grid a.wide { grid-column: span 2; }
.grid a span {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.2rem .9rem .8rem; color: #fff; font-size: .82rem; font-weight: 600;
  background: linear-gradient(0deg, rgba(4, 28, 34, .85), transparent); opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s var(--ease);
}
.grid a:hover span, .grid a:focus-visible span { opacity: 1; transform: none; }
.gallery-more { text-align: center; margin-top: 1.6rem; }
.grid a.is-hidden { display: none; }

/* lightbox */
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(96vw, 1500px); max-height: 96vh; width: auto; }
.lightbox::backdrop { background: rgba(4, 28, 34, .92); backdrop-filter: blur(6px); }
.lightbox figure { margin: 0; display: grid; gap: .6rem; justify-items: center; }
.lightbox img { max-height: 86vh; max-width: 96vw; width: auto; border-radius: 10px; object-fit: contain; }
.lightbox figcaption { color: #fff; font-size: .95rem; font-weight: 550; text-align: center; }
.lightbox button {
  position: fixed; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .1); color: #fff; cursor: pointer; display: grid; place-items: center;
}
.lightbox button svg { width: 22px; height: 22px; }
.lightbox button:hover { background: rgba(255, 255, 255, .25); }
.lightbox .prev { left: 1rem; }
.lightbox .next { right: 1rem; }
.lightbox .close { top: 1.2rem; right: 1rem; transform: none; }

/* ---- partneri ---- */
.partners .panel {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--brand-900); color: var(--on-dark); border-radius: calc(var(--radius) + 6px); padding: clamp(1.8rem, 5vw, 4rem);
  background-image: radial-gradient(90% 120% at 0% 100%, rgba(25, 183, 214, .25), transparent 55%);
}
.partners h2 { color: #fff; }
.partners .eyebrow { color: var(--brand-400); }
.partners p { color: var(--on-dark); }
.partners h3 { color: #fff; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; font-stretch: 92%; margin-bottom: .7rem; color: var(--brand-400); }
.list { display: grid; gap: .55rem; margin-bottom: 1.4rem; }
.list li { display: flex; gap: .7rem; align-items: baseline; font-weight: 550; color: #fff; }
.list li::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--brand-400); flex: 0 0 auto; transform: rotate(45deg); position: relative; top: -1px; }

/* ---- kontakt ---- */
.contact .wrap { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact .head { margin-bottom: 1.6rem; }
.contact-list { display: grid; gap: 1.1rem; }
.contact-list div { display: grid; gap: .15rem; padding-left: 1.1rem; border-left: 3px solid var(--brand-100); }
.contact-list dt { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-700); font-weight: 700; font-stretch: 92%; }
.contact-list dd { margin: 0; font-weight: 550; color: var(--ink); }
.contact-list dd a { color: var(--ink); text-decoration: none; font-weight: 650; }
.contact-list dd a:hover { color: var(--brand-700); text-decoration: underline; }
.contact-list small { display: block; color: var(--muted); font-weight: 450; font-size: .9rem; }
.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); display: grid; gap: 1rem; }
.form .row { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: grid; gap: .35rem; }
.field label { font-size: .86rem; font-weight: 650; color: var(--ink); }
.field label span { color: var(--brand-700); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 4px rgba(11, 156, 187, .15); }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.consent input { margin-top: .3rem; width: 18px; height: 18px; accent-color: var(--brand-700); flex: 0 0 auto; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .btn { justify-self: start; }
.form-msg { display: none; padding: .9rem 1.1rem; border-radius: 10px; font-weight: 550; }
.form-msg.ok { display: block; background: #e2f5ea; color: #145c33; }
.form-msg.err { display: block; background: #fbe7e7; color: #8a1f1f; }
.form-msg.info { display: block; background: var(--brand-50); color: var(--brand-900); border: 1px solid var(--brand-100); }
.form-msg a { color: inherit; }

/* ---- pätička ---- */
.foot { background: var(--brand-950); color: var(--on-dark-muted); padding-block: 3rem 2rem; font-size: .92rem; }
.foot .wrap { display: grid; gap: 2rem; grid-template-columns: 1.3fr 1fr 1fr; align-items: start; }
.foot .brand { color: #fff; margin-bottom: .9rem; }
.foot h4 { color: #fff; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: .8rem; font-stretch: 92%; }
.foot a { color: var(--on-dark); text-decoration: none; }
.foot a:hover { color: var(--brand-400); }
.foot ul { display: grid; gap: .45rem; }
.foot .bottom { grid-column: 1 / -1; border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 1.2rem; display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; font-size: .82rem; }

/* ---- podstránky (právne texty) ---- */
.page { padding-top: clamp(7rem, 14vh, 9rem); }
.prose { max-width: 72ch; }
.prose h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.5rem; }
.prose h2 { font-size: 1.35rem; margin: 2rem 0 .7rem; }
.prose ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1em; }
.prose li { margin-bottom: .35em; }
.prose table { border-collapse: collapse; width: 100%; margin-bottom: 1em; }
.prose td { padding: .45rem .6rem .45rem 0; vertical-align: top; border-bottom: 1px solid var(--line); }
.prose td:first-child { color: var(--muted); width: 38%; }
.top.page-top { background: rgba(255, 255, 255, .94); color: var(--ink); box-shadow: 0 10px 30px -20px rgba(6, 57, 71, .5); }

/* ---- odhalenie pri scrolle ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip-track { animation: none; }
  .btn:hover, .card:hover { transform: none; }
  .card:hover figure img, .grid a:hover img { transform: none; }
}

/* ---- responzivita ---- */
@media (max-width: 1024px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .spec { grid-template-columns: repeat(3, 1fr); }
  .spec div + div { border-top: 0; border-left: 1px solid rgba(255, 255, 255, .16); }
  .pillars, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 180px; }
  .foot .wrap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 0; z-index: 40; flex-direction: column; justify-content: center; gap: 1.4rem;
    background: var(--brand-950); color: #fff; opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .3s, transform .3s var(--ease), visibility .3s;
  }
  .nav a { font-size: 1.5rem; font-weight: 700; }
  .nav .btn { font-size: 1.05rem; margin: .4rem 0 0; }
  .lang { margin: .6rem 0 0; border-color: rgba(255, 255, 255, .5); }
  .lang a { font-size: .95rem; padding: .35rem .9rem; }
  .top.is-solid .lang { border-color: rgba(255, 255, 255, .5); }
  .top.is-solid .lang a[aria-current="true"] { background: #fff; color: var(--brand-900); }
  body.menu-open .nav { opacity: 1; visibility: visible; transform: none; }
  body.menu-open { overflow: hidden; }
  .burger { display: inline-flex; position: relative; z-index: 45; }
  body.menu-open .top { color: #fff; }
  body.menu-open .brand { position: relative; z-index: 45; }
  .cards { grid-template-columns: 1fr; }
  .about .wrap, .contact .wrap, .partners .panel { grid-template-columns: 1fr; }
  .facts { right: .8rem; bottom: .8rem; min-width: 0; }
  .hero { min-height: 0; padding-top: 7.5rem; }
  .hero-bg img { object-position: 55% 40%; }
}
@media (max-width: 600px) {
  .spec { grid-template-columns: 1fr; }
  .spec div + div { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .16); }
  .pillars, .steps { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 150px; }
  .grid a.wide { grid-column: span 2; }
  .form .row { grid-template-columns: 1fr; }
  .foot .wrap { grid-template-columns: 1fr; }
  .brand small { display: none; }
  .actions .btn { width: 100%; }
}
