/* ==========================================================================
   LYNX STUDIO — design system
   Paleta a typografie dle předlohy: Figtree + Fragment Mono, akcent #ff6041
   ========================================================================== */

:root {
  --c-black: #000;
  --c-dark: #050609;
  --c-panel: #141414;
  --c-white: #fff;
  --c-light: #f2f2f2;
  --c-gray-50: #fafafa;
  --c-gray-100: #ebebeb;
  --c-gray-200: #d9d9d9;
  --c-gray-300: #d5d7de;
  --c-text-mut: #888d92;
  --c-text-gray: #797d82;
  --c-text-dim: #5c6063;
  --c-accent: #ff6041;

  --f-sans: "Figtree", "Inter", system-ui, sans-serif;
  --f-mono: "Fragment Mono", ui-monospace, monospace;

  --radius: 18px;
  --radius-sm: 10px;
  --container: 1560px;
  --pad: clamp(20px, 3.4vw, 56px);
  --nav-h: 60px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: var(--f-sans);
  background: var(--c-dark);
  color: var(--c-white);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,p,figure { margin: 0; }
sup { font-size: .55em; margin-left: 2px; color: var(--c-text-mut); }
::selection { background: var(--c-accent); color: #fff; }

.mono { font-family: var(--f-mono); font-size: 12px; letter-spacing: .02em; text-transform: uppercase; }
.accent { color: var(--c-accent); }
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--pad); }

.section-dark { background: var(--c-dark); color: var(--c-white); }
.section-light { background: var(--c-light); color: #111; }

/* ------- ticks / rulers / barcode ------- */
.ruler {
  height: 26px; margin-block: 34px;
  background-image: repeating-linear-gradient(90deg, currentColor 0 1px, transparent 1px 14px);
  opacity: .18;
}
.ruler--sm { display: block; height: 18px; margin-block: 22px; }
.ruler--dark { color: #fff; opacity: .14; }
.ruler--light { color: #fff; width: min(46vw, 640px); height: 12px; margin: 0; opacity: .5; }

.hatch, .hatch-sm {
  display: inline-block;
  background-image: repeating-linear-gradient(115deg, currentColor 0 1px, transparent 1px 5px);
  opacity: .35;
}
.hatch { width: 92px; height: 10px; }
.hatch-sm { width: 110px; height: 9px; margin-right: auto; }

.barcode {
  height: 200px; background: var(--c-light);
  background-image:
    repeating-linear-gradient(90deg, rgba(0,0,0,.28) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.16) 0 2px, transparent 2px 23px);
}

/* ------- degree markers ------- */
.deg-marker {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 10px; color: var(--c-text-mut);
}
.deg-marker i { display: block; width: 44px; height: 1px; background: currentColor; opacity: .7; }

/* ------- buttons ------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .03em;
  padding: 19px 30px; border-radius: var(--radius-sm); border: 0; cursor: pointer;
  transition: transform .35s cubic-bezier(.22,1,.36,1), background .3s, color .3s;
}
.btn--accent { background: var(--c-accent); color: #fff; }
.btn--white { background: #fff; color: #111; }
.btn--wide { width: 100%; justify-content: space-between; }
.btn:hover { transform: translateY(-2px); }
.btn--accent:hover { background: #e94f31; }
.btn__arrow { transition: transform .35s; }
.btn:hover .btn__arrow { transform: translateX(5px); }

.icon-btn {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--c-accent); color: #fff; font-size: 16px;
  transition: transform .35s;
}
.icon-btn-row { display: inline-flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 500; }
.icon-btn-row:hover .icon-btn { transform: translateX(4px); }
.icon-btn-row sup { color: inherit; opacity: .55; }

.pill {
  display: inline-block; padding: 3px 9px; border-radius: 6px;
  font-family: var(--f-mono); font-size: 11px;
}
.pill--dark { background: #2b2b2b; color: #fff; }
.pill--accent { background: var(--c-accent); color: #fff; border-radius: 4px; }

.card { background: #fff; border-radius: var(--radius); padding: 34px; }
.card--gray { background: var(--c-gray-50); box-shadow: inset 0 0 0 1px var(--c-gray-100); }
.card--dark { background: #3e4145; color: #fff; }

/* ------- section head pattern ------- */
.section-head { display: grid; grid-template-columns: 120px 1fr auto; gap: 40px; padding-top: 96px; }
.section-head__ticks { display: flex; flex-direction: column; gap: 56px; padding-top: 6px; color: currentColor; }
.section-head__ticks span:first-child { width: 92px; height: 2px; background: currentColor; opacity: .5; }
.section-head__main { position: relative; }
.section-head__dash {
  display: block; width: 100%; height: 1px; margin-bottom: 54px;
  background: linear-gradient(90deg, var(--c-accent) 0 26px, rgba(128,128,128,.35) 26px);
}
.section-head__logo {
  font-weight: 800; font-size: 19px; color: var(--c-accent); letter-spacing: -.02em;
}
.section-heading {
  font-size: clamp(44px, 5.4vw, 88px); font-weight: 500;
  line-height: 1.02; letter-spacing: -.025em; color: #1c1c1c;
}
.section-heading--muted { color: var(--c-text-gray); }
.section-sub {
  max-width: 520px; margin-top: 30px;
  font-size: 16px; color: var(--c-text-mut);
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(3,4,6,.86); backdrop-filter: blur(14px);
}
.nav__inner {
  display: flex; align-items: center; gap: 44px;
  height: var(--nav-h); padding-inline: var(--pad); max-width: var(--container); margin: 0 auto;
}
.nav__logo { font-weight: 800; font-size: 23px; letter-spacing: -.03em; color: var(--c-accent); }
.nav__logo-deg { font-size: .6em; vertical-align: super; }
.nav__links { display: flex; gap: 34px; margin-left: clamp(20px, 14vw, 240px); }
.nav__link { font-family: var(--f-mono); font-size: 12px; letter-spacing: .04em; color: #eee; position: relative; }
.nav__link:hover { color: var(--c-accent); }
.nav__link sup { background: #2a2a2a; border-radius: 4px; padding: 1px 4px; font-size: 9px; color: #ccc; }
.nav__link--right { margin-left: auto; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: stretch; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__img {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  height: 100%; width: min(72vw, 1150px); object-fit: cover; object-position: top center;
}
.hero__bg-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--c-dark) 4%, transparent 34%, transparent 66%, var(--c-dark) 96%),
    linear-gradient(180deg, rgba(5,6,9,.72) 0%, transparent 26%, transparent 62%, var(--c-dark) 100%);
}
.hero__markers {
  position: absolute; left: 22px; top: 0; bottom: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: space-evenly; align-items: flex-start;
}
.hero__inner {
  position: relative; z-index: 2; flex: 1;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nav-h) + 44px) var(--pad) 40px; max-width: var(--container); margin: 0 auto; width: 100%;
}
.hero__top { display: flex; justify-content: space-between; gap: 40px; }
.hero__headline {
  font-size: clamp(30px, 3.1vw, 50px); font-weight: 500; letter-spacing: -.02em; line-height: 1.12;
  margin-left: clamp(0px, 10vw, 170px);
}
.hero__stat { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.hero__stat-num { font-size: clamp(44px, 4.4vw, 66px); font-weight: 600; color: var(--c-accent); line-height: 1; }
.hero__stat-label { color: #d6d6d6; line-height: 1.7; }
.hero__client { color: #fff; font-weight: 700; font-size: 15px; text-transform: none; margin-top: 16px; }
.hero__client span { font-size: 9px; vertical-align: super; opacity: .8; }

.hero__wordmark {
  font-size: clamp(72px, 11.6vw, 190px); font-weight: 700; letter-spacing: -.045em; line-height: .9;
  display: flex; align-items: baseline; user-select: none;
}
.hero__wordmark-a { color: var(--c-accent); }
.hero__wordmark-slash { color: #fff; font-weight: 300; margin-inline: .02em; }
.hero__wordmark-b { color: var(--c-light); }

.hero__bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; }
.hero__intro { display: flex; flex-direction: column; gap: 26px; margin-left: clamp(0px, 4.6vw, 80px); }
.hero__claim { line-height: 1.9; color: #e8e8e8; }
.hero__time { line-height: 1.9; color: #cfcfcf; }
.hero__ctas { display: flex; gap: 16px; }

.hero__showreel { width: min(360px, 30vw); display: flex; flex-direction: column; gap: 12px; }
.hero__showreel-head { display: flex; align-items: center; gap: 12px; color: #ddd; }
.hero__showreel-head .line { flex: 1; height: 1px; background: #666; }
.hero__showreel-video {
  border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.2);
  aspect-ratio: 16/10; background: #111;
}
.hero__showreel-video video { width: 100%; height: 100%; object-fit: cover; }
.hero__award { color: #cfcfcf; }

/* ==========================================================================
   WORDS (pinned sekvence)
   ========================================================================== */
.words { position: relative; }
.words__pin {
  height: 100vh; display: grid; place-items: center; overflow: hidden;
}
.words__word {
  grid-area: 1/1; opacity: 0;
  font-size: clamp(64px, 9.4vw, 156px); font-weight: 700; letter-spacing: -.045em; color: #0d0d0d;
  will-change: transform, opacity;
}
.words__word--accent { color: var(--c-accent); }

/* ==========================================================================
   PROJECTS
   ========================================================================== */
.projects { background: var(--c-dark); }
.project { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.project__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project__overlay { position: absolute; inset: 0; background: rgba(5,6,9,.44); }
.project__content {
  position: relative; height: 100%; z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nav-h) + 40px) var(--pad) 44px;
}
.project__top { display: flex; justify-content: space-between; align-items: center; }
.project__brand { font-weight: 700; font-size: 19px; }
.project__brand span { font-size: .6em; vertical-align: super; }
.project__center { text-align: center; transform: translateY(-10px); }
.project__title { font-size: clamp(40px, 4.2vw, 66px); font-weight: 500; letter-spacing: -.02em; }
.project__sub { margin-top: 14px; color: #e5e5e5; }
.project__bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.project__stack li { line-height: 1.85; color: #ddd; }
.project__year { color: #ddd; }

.projects__more {
  position: relative; z-index: 3; background: #0a0b0d;
  display: flex; align-items: center; gap: 28px;
  padding: 68px var(--pad); max-width: var(--container); margin: 0 auto;
}
.projects__more .mono { color: #bbb; font-size: 14px; }
.projects__more-line { flex: 1; height: 1px; background: #333; }
.projects__more .icon-btn-row { color: #eee; }

/* ==========================================================================
   PERFORMANCE
   ========================================================================== */
.perf { position: relative; overflow: hidden; padding-bottom: 150px; }
.perf__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.perf .container { position: relative; z-index: 2; }
.perf__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  padding-top: 60px;
}
.stat__num { font-size: clamp(56px, 6.4vw, 104px); font-weight: 600; letter-spacing: -.03em; line-height: 1; }
.stat__label {
  margin-top: 22px; padding-top: 10px; color: #ddd;
  border-top: 1px solid rgba(255,255,255,.25);
  display: inline-block;
}
.stat__label span { color: var(--c-text-mut); }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { padding-bottom: 40px; overflow: hidden; }
.services__giant {
  font-size: clamp(120px, 21vw, 360px); font-weight: 700; letter-spacing: -.05em; line-height: .78;
  color: #101010; text-align: center; padding-top: 90px; user-select: none; white-space: nowrap;
}
.services__tagline { text-align: left; color: #9aa0a4; padding: 26px var(--pad) 10px; max-width: var(--container); margin: 0 auto; }
.service { border-top: 1px solid rgba(0,0,0,.12); padding: 26px 0 90px; }
.service:first-of-type { border-top: 0; }
.service__head { display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 16px; position: relative; }
.service__head::after {
  content: ""; position: absolute; left: 0; bottom: 8px; width: 26px; height: 3px; background: var(--c-accent);
}
.service__num { color: #b9bcbf; font-size: 15px; }
.service__tag { font-size: 11px; }
.service__body { display: grid; grid-template-columns: 1.35fr 1fr; gap: 60px; padding-top: 40px; }
.service__title { font-size: clamp(52px, 6vw, 104px); font-weight: 500; letter-spacing: -.03em; line-height: 1; color: #131313; }
.service__thumb { width: 264px; height: 104px; object-fit: cover; border-radius: 8px; margin-top: 56px; }
.service__desc { margin-top: 34px; max-width: 360px; color: var(--c-text-dim); font-size: 15.5px; }
.service__list { padding-top: 10px; text-transform: none; font-size: 14px; }
.service__list li {
  padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,.1); color: #4c5054;
  position: relative; padding-left: 22px;
}
.service__list li::before { content: "+"; position: absolute; left: 0; color: var(--c-accent); }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process { padding-bottom: 0; overflow: hidden; }
.process__stage { position: relative; padding: 90px 0 110px; }
.process__blob {
  position: absolute; inset: -10% -20%; filter: blur(90px) saturate(1.25); opacity: .8;
  background:
    radial-gradient(38% 44% at 22% 62%, #0c3f66 0%, transparent 100%),
    radial-gradient(30% 38% at 48% 58%, #0e7f9e 0%, transparent 100%),
    radial-gradient(26% 30% at 62% 66%, #b8342a 0%, transparent 100%),
    radial-gradient(30% 36% at 78% 52%, #57123f 0%, transparent 100%);
  animation: blob-drift 16s ease-in-out infinite alternate;
}
@keyframes blob-drift {
  from { transform: translate3d(-2%, 1%, 0) scale(1); }
  to   { transform: translate3d(3%, -2%, 0) scale(1.08); }
}
.process__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: center;
}
.process__side-title { font-size: clamp(28px, 2.6vw, 42px); font-weight: 500; letter-spacing: -.015em; line-height: 1.15; }
.process__side-desc { margin: 26px 0 34px; max-width: 400px; color: #c9c9c9; font-size: 15px; }
.process__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.process-card {
  background: rgba(8,9,11,.62); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.07); border-radius: 16px; padding: 26px;
}
.process-card__head { display: flex; justify-content: space-between; margin-bottom: 40px; }
.process-card__icon { font-size: 19px; filter: grayscale(1) brightness(1.6); }
.process-card__title { font-size: 15px; font-weight: 600; letter-spacing: .06em; margin-bottom: 14px; }
.process-card p { font-size: 13.5px; color: #a9adb1; }

.process__case {
  position: relative; z-index: 2; margin-top: 110px;
  display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 60px; align-items: center;
}
.process__case-card {
  position: relative; display: block; border-radius: 14px; overflow: hidden; aspect-ratio: 16/11;
}
.process__case-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.process__case-card:hover img { transform: scale(1.06); }
.process__case-brand { position: absolute; top: 16px; right: 18px; color: #fff; }
.process__case-name {
  position: absolute; left: 0; right: 0; bottom: 18px; text-align: center;
  font-size: 22px; font-weight: 500;
}
.process__case-desc { color: #cfcfcf; font-size: 15px; max-width: 340px; }
.process__case-right { border-left: 1px solid rgba(255,255,255,.14); padding-left: 60px; }
.process__case-right h4 { font-size: 26px; font-weight: 500; margin-bottom: 14px; }
.process__case-right p { color: #b9bdc1; font-size: 14.5px; max-width: 320px; margin-bottom: 30px; }

/* ==========================================================================
   WHY US
   ========================================================================== */
.why { position: relative; overflow: hidden; }
.why__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding-bottom: 130px;
}
.why__card-words { display: flex; flex-direction: column; justify-content: space-between; min-height: 470px; }
.why__words { font-size: 34px; font-weight: 600; letter-spacing: -.02em; line-height: 1.32; }
.why__card-foot { display: flex; align-items: center; gap: 8px; color: #6c7075; text-transform: none; font-size: 12.5px; }
.why__satisfaction { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.why__satisfaction h3 { font-size: 27px; font-weight: 500; line-height: 1.2; }
.why__rate { font-size: 30px; font-weight: 600; border-left: 1px solid var(--c-gray-200); padding-left: 22px; }
.why__pills {
  margin: 34px 0; padding: 26px 20px; border-radius: 12px;
  background-image: radial-gradient(rgba(0,0,0,.09) 1px, transparent 1px); background-size: 7px 7px;
}
.why__pills li { display: flex; align-items: center; gap: 12px; padding: 7px 0; color: #3f4348; font-size: 11.5px; }
.why__stars { font-size: 15px; }
.why__stars b { font-weight: 700; }
.why__stars-sub { color: var(--c-text-mut); font-size: 13.5px; margin-top: 8px; }
.why__card-fresh { display: flex; flex-direction: column; min-height: 470px; }
.why__card-note { color: var(--c-text-mut); font-size: 14px; margin-bottom: 10px; }
.why__card-fresh h3 { font-size: 27px; font-weight: 500; letter-spacing: -.01em; }
.why__dots { margin: auto 0; text-align: center; font-size: 60px; color: #c9ccd0; letter-spacing: .4em; }
.why__card-pricing h3 { font-size: 24px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.why__ico { color: #9aa0a4; font-size: 20px; }
.why__card-pricing p { color: var(--c-text-dim); font-size: 14.5px; margin-top: 14px; }
.why__card-pricing img { border-radius: 12px; margin-top: 26px; aspect-ratio: 16/9; object-fit: cover; }
.why__card-small { color: var(--c-text-mut) !important; font-size: 13px !important; margin-block: 18px 26px !important; }
.why__card-beyond h3 { font-size: 30px; font-weight: 500; margin-top: 6px; }
.why__checks { margin-top: 44px; }
.why__checks li { padding: 10px 0; color: #4c5054; font-size: 15px; }
.why__card-chat { display: flex; flex-direction: column; }
.why__card-chat h3 { font-size: 30px; font-weight: 500; letter-spacing: -.01em; }
.why__book { margin-top: auto; border: 1px solid var(--c-gray-100); border-radius: 14px; padding: 24px; background: #fff; }
.why__book .mono { color: var(--c-text-mut); }
.why__book-date { font-size: 21px; font-weight: 600; margin: 10px 0 22px; }
.why__watermark {
  position: absolute; right: -20px; bottom: 40px;
  font-size: 200px; font-weight: 800; letter-spacing: -.05em; color: rgba(0,0,0,.05);
  writing-mode: vertical-rl; user-select: none; pointer-events: none;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing { padding-bottom: 60px; }
.plans { display: flex; flex-direction: column; gap: 18px; }
.plan { background: #fff; border-radius: var(--radius); overflow: hidden; }
.plan__summary {
  list-style: none; display: flex; align-items: center; gap: 22px;
  padding: 30px 38px; cursor: pointer;
}
.plan__summary::-webkit-details-marker { display: none; }
.plan__ticks {
  width: 14px; height: 40px;
  background-image: repeating-linear-gradient(0deg, var(--c-gray-200) 0 2px, transparent 2px 6px);
}
.plan[open] .plan__ticks { background-image: repeating-linear-gradient(0deg, var(--c-accent) 0 2px, transparent 2px 6px); }
.plan__name { font-size: 27px; font-weight: 500; display: block; color: #222; }
.plan__name.accent { color: var(--c-accent); }
.plan__type { color: var(--c-text-mut); display: block; margin-top: 4px; }
.plan__type.accent { color: var(--c-accent); }
.plan__toggle { margin-left: auto; position: relative; width: 26px; height: 26px; }
.plan__toggle::before, .plan__toggle::after {
  content: ""; position: absolute; inset: 50% auto auto 0; width: 100%; height: 1.5px;
  background: #9aa0a4; transition: transform .4s;
}
.plan__toggle::after { transform: rotate(90deg); }
.plan[open] .plan__toggle::before { transform: rotate(45deg); background: var(--c-accent); }
.plan[open] .plan__toggle::after { transform: rotate(135deg); background: var(--c-accent); }
.plan__body {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px;
  padding: 20px 44px 54px; position: relative;
}
.plan__for { color: var(--c-text-dim); font-size: 15px; }
.plan__price { font-size: clamp(34px, 3vw, 48px); font-weight: 600; letter-spacing: -.02em; margin-top: 14px; color: #16181b; }
.plan__price span { font-size: 15px; font-weight: 400; color: var(--c-text-mut); }
.plan__was { color: var(--c-text-mut); margin-top: 8px; font-size: 14px; }
.save { color: var(--c-accent); border: 1px solid currentColor; border-radius: 20px; padding: 2px 10px; margin-left: 8px; font-size: 10px; }
.plan__img { width: 132px; border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; margin-top: 26px; }
.plan__tagline { font-style: italic; color: var(--c-text-dim); font-size: 14px; margin-top: 22px; max-width: 320px; }
.plan__features { align-self: center; }
.plan__features li {
  padding: 12px 0 12px 30px; position: relative; color: #33373b; font-size: 15px;
}
.plan__features li::before {
  content: "✓"; position: absolute; left: 0; top: 12px;
  width: 19px; height: 19px; border-radius: 50%; background: var(--c-gray-100); color: #8a8f94;
  font-size: 11px; display: grid; place-items: center;
}
.plan__cta-col { display: flex; flex-direction: column; justify-content: center; gap: 26px; position: relative; z-index: 2; }
.plan__benefits li { font-style: italic; color: #43474c; font-size: 14.5px; padding: 6px 0; }
.plan__timeline { color: var(--c-text-mut); }
.plan__timeline b { color: #26292d; }
.plan__bignum {
  position: absolute; right: -30px; bottom: -60px; z-index: 1;
  font-size: 380px; font-weight: 700; color: rgba(0,0,0,.04); line-height: 1; user-select: none;
}

.expert {
  display: grid; grid-template-columns: 1fr 1fr auto auto; align-items: center; gap: 48px;
  padding: 90px 0 110px;
}
.expert__title { font-size: clamp(34px, 3.4vw, 54px); font-weight: 500; color: var(--c-text-gray); letter-spacing: -.02em; }
.expert__desc { color: var(--c-text-dim); max-width: 300px; }
.expert__person { display: flex; align-items: center; gap: 16px; }
.expert__person img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; }
.expert__person b { display: block; font-size: 15px; color: #202327; }
.expert__person span { font-size: 13px; color: var(--c-text-mut); }

/* ==========================================================================
   TEAM
   ========================================================================== */
.team { padding-bottom: 130px; }
.team__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px;
  padding-block: 70px 90px; perspective: 900px;
}
.member { position: relative; transform: rotate(var(--tilt)); transition: transform .6s cubic-bezier(.22,1,.36,1); }
.member:hover { transform: rotate(0deg) translateY(-8px); }
.member img {
  width: 100%; aspect-ratio: 3/4.1; object-fit: cover; border-radius: 12px;
  filter: grayscale(1) contrast(1.05);
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.member figcaption { position: absolute; left: 18px; bottom: 16px; right: 18px; }
.member b { font-size: 16.5px; font-weight: 500; text-shadow: 0 2px 12px rgba(0,0,0,.7); }
.member__role { display: block; color: #d3d3d3; font-size: 10px; margin-top: 4px; opacity: 0; transform: translateY(6px); transition: .45s; }
.member__kpi {
  display: block; margin-top: 10px; font-size: 13px; color: #e6e6e6;
  opacity: 0; transform: translateY(6px); transition: .45s .06s;
}
.member__kpi em { font-style: normal; font-weight: 700; font-size: 19px; margin-right: 6px; }
.member:hover .member__role, .member:hover .member__kpi { opacity: 1; transform: none; }

.team__foot { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 70px; align-items: start; }
.team__statement { font-size: clamp(24px, 2.2vw, 34px); font-weight: 500; line-height: 1.25; letter-spacing: -.01em; }
.team__note { color: #b6babd; font-size: 15px; max-width: 360px; }
.team__discover { border-left: 1px solid rgba(255,255,255,.14); padding-left: 56px; }
.team__discover h4 { font-size: 23px; font-weight: 500; margin-bottom: 12px; }
.team__discover p { color: #b6babd; font-size: 14.5px; margin-bottom: 28px; }
.team .icon-btn-row { color: #eee; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding-block: 120px; }
.faq__grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 110px; align-items: start; }
.faq__left .section-heading { font-size: clamp(40px, 4.2vw, 66px); color: var(--c-text-gray); }
.faq__book { margin-top: 80px; display: flex; flex-direction: column; gap: 26px; max-width: 350px; }
.faq__book > p { color: #3d4145; font-size: 15px; }
.qa { border-top: 1px solid rgba(0,0,0,.12); }
.qa:last-child { border-bottom: 1px solid rgba(0,0,0,.12); }
.qa summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 30px;
  padding: 26px 4px; font-size: 18.5px; font-weight: 500; color: #202327;
}
.qa summary::-webkit-details-marker { display: none; }
.qa__plus { position: relative; width: 22px; height: 22px; flex: none; }
.qa__plus::before, .qa__plus::after {
  content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1.5px;
  background: var(--c-accent); transition: transform .35s;
}
.qa__plus::after { transform: rotate(90deg); }
.qa[open] .qa__plus::after { transform: rotate(0deg); }
.qa p { padding: 0 40px 26px 4px; color: var(--c-text-dim); font-size: 15px; max-width: 620px; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi { padding-bottom: 140px; }
.testi__top { display: grid; grid-template-columns: 1fr 1.15fr; gap: 26px; }
.testi__intro { background: var(--c-gray-50); padding: 44px; }
.testi__label { color: var(--c-text-mut); border-top: 1px solid var(--c-gray-200); padding-top: 20px; }
.testi__intro h2 { font-size: clamp(28px, 2.5vw, 40px); font-weight: 500; letter-spacing: -.015em; margin: 22px 0; }
.testi__desc { color: var(--c-text-dim); font-size: 15px; margin-bottom: 44px; }
.testi__intro .btn { margin-top: 30px; }
.testi__spotlight { padding: 44px; display: flex; flex-direction: column; gap: 40px; }
.testi__spot-title { font-size: clamp(70px, 7.2vw, 120px); font-weight: 500; letter-spacing: -.03em; line-height: 1; }
.testi__spot-body { display: flex; gap: 34px; align-items: flex-start; }
.testi__spot-body img { width: 168px; border-radius: 10px; aspect-ratio: 3/4; object-fit: cover; }
.testi__spot-body p { font-size: 16.5px; line-height: 1.6; margin-bottom: 26px; }
.testi__spot-body b { display: block; font-size: 15px; }
.testi__spot-body span { display: block; font-size: 13px; color: #c6c9cc; margin-top: 3px; }
.testi__spot-body .pill { background: #55585c; color: #fff; margin-top: 12px; display: inline-block; }

.logos { padding-block: 74px; }
.marquee { overflow: hidden; position: relative; }
.marquee__track { display: flex; gap: 110px; width: max-content; animation: marquee 28s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logos__item { font-size: 25px; font-weight: 700; color: #9ea3a8; letter-spacing: -.01em; white-space: nowrap; }

.testi__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote-card { display: flex; flex-direction: column; min-height: 330px; }
.quote-card__mark { font-size: 88px; color: var(--c-gray-100); line-height: 1; align-self: flex-end; }
.quote-card__text { font-size: 15.5px; color: #33373b; margin: auto 0 34px; }
.quote-card__person { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--c-gray-100); padding-top: 22px; }
.quote-card__person img { width: 46px; height: 46px; border-radius: 9px; object-fit: cover; }
.quote-card__person b { display: block; font-size: 14px; }
.quote-card__person span:not(.pill) { font-size: 12.5px; color: var(--c-text-mut); }
.quote-card__person .pill { margin-left: auto; background: var(--c-gray-100); color: #55585c; }

/* ==========================================================================
   BLOG / WHISPERS
   ========================================================================== */
.blog { padding-bottom: 60px; }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; isolation: isolate;
}
.blog-card--wide { grid-column: span 2; }
.blog-card img {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.22,1,.36,1);
}
.blog-card:hover img { transform: scale(1.05); }
.blog-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(200deg, rgba(0,0,0,.35), rgba(0,0,0,.72));
}
.blog-card h3 { padding: 26px; font-size: clamp(22px, 1.8vw, 30px); font-weight: 500; letter-spacing: -.01em; }
.blog-card__meta {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: flex-start; padding: 24px 26px;
}
.blog-card__author { border-left: 2px solid rgba(255,255,255,.6); padding-left: 12px; }
.blog-card__author b { display: block; font-size: 13.5px; font-weight: 600; }
.blog-card__author i { font-style: normal; font-size: 12px; color: #d4d4d4; }
.blog-card__date { font-size: 11px; color: #e4e4e4; }
.blog-card--intro .blog-card__body { padding: 30px; display: flex; flex-direction: column; height: 100%; }
.blog-card__tag { color: #e8e8e8; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 14px; }
.blog-card--intro h3 { padding: 20px 0 8px; }
.blog-card__sub { color: #d9d9d9; font-size: 14px; }
.blog-card__list { margin-top: auto; }
.blog-card__list li { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: 14px; color: #eee; }
.blog-card__list li:last-child { border-bottom: 0; }
.blog__more { display: flex; justify-content: flex-end; padding: 44px 0 90px; }

/* ==========================================================================
   IMPACT / CTA
   ========================================================================== */
.impact { position: relative; overflow: hidden; color: #26292d; }
.impact__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.impact__bg::after { content: ""; position: absolute; inset: 0; background: rgba(240,240,240,.4); }
.impact__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 90px;
  padding-block: 130px;
}
.impact__years-note { font-size: 16px; color: #3a3e42; max-width: 340px; }
.impact__nine { display: block; font-size: 40px; font-weight: 600; letter-spacing: -.02em; margin-bottom: 10px; }
.impact__stats { margin-top: 44px; }
.impact__stats li { display: flex; align-items: center; gap: 14px; padding: 12px 0; font-size: 17px; color: #33373b; }
.impact__stats li b { font-weight: 700; }
.impact__stats li:last-child { border-bottom: 1px solid #9aa0a4; padding-bottom: 34px; }
.impact__years {
  margin-top: 60px; display: flex; align-items: center; gap: 20px;
  font-size: clamp(64px, 6.4vw, 110px); font-weight: 500; color: rgba(255,255,255,.75); letter-spacing: -.03em;
}
.impact__years span { flex: 1; height: 2px; background: rgba(255,255,255,.6); }
.impact__heading { font-size: clamp(44px, 4.6vw, 76px); font-weight: 500; letter-spacing: -.02em; line-height: 1.05; color: var(--c-text-gray); }
.impact__quote { display: flex; gap: 30px; margin: 60px 0 44px; max-width: 560px; }
.impact__quote img { width: 168px; border-radius: 12px; aspect-ratio: 3/3.6; object-fit: cover; }
.impact__quote p { font-size: 16.5px; color: #33373b; margin-bottom: 22px; }
.impact__quote b { display: block; font-size: 15px; }
.impact__quote span { font-size: 13px; color: var(--c-text-dim); }
.impact .btn--wide { max-width: 430px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { padding-top: 110px; color: #26292d; }
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 80px;
  padding-bottom: 90px;
}
.footer__news h3 { font-size: clamp(34px, 3.2vw, 50px); font-weight: 500; color: var(--c-text-gray); letter-spacing: -.02em; }
.footer__spiral { color: var(--c-accent); font-size: .8em; }
.footer__news > p { margin: 22px 0 30px; color: #3d4145; }
.footer__form { display: flex; flex-direction: column; gap: 16px; max-width: 400px; }
.footer__form input {
  font: 16px var(--f-sans); padding: 15px 4px; border: 0; outline: 0; background: transparent;
  border-bottom: 1px solid #9aa0a4; color: #202327;
}
.footer__form input:focus { border-color: var(--c-accent); }
.footer__terms { font-size: 13.5px; color: var(--c-text-dim); margin-top: 20px; }
.footer__terms a { text-decoration: underline; }
.footer__nospam { font-size: 12.5px; color: var(--c-text-mut); margin-top: 8px; }
.footer__col { display: flex; flex-direction: column; gap: 15px; }
.footer__col a { color: #3d4145; font-size: 13px; }
.footer__col a:hover { color: var(--c-accent); }
.footer__col-head { color: var(--c-text-mut); border-bottom: 1px solid #c9ccd0; padding-bottom: 14px; margin-bottom: 8px; font-size: 12px; }
.footer__socials-row {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: 30px; border-top: 1px solid #d4d7da;
}
.footer__socials { display: flex; gap: 26px; }
.footer__socials a { color: var(--c-accent); font-size: 14px; }
.footer__contact { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-block: 50px; border-top: 1px solid #d4d7da; }
.footer__addr { font-size: 14px; line-height: 1.8; color: #3d4145; text-transform: none; }
.footer__mail { font-size: 20px; text-transform: none; }
.footer__brand {
  display: grid; grid-template-columns: 1fr auto auto; gap: 60px; align-items: end;
  padding-block: 60px 70px; border-top: 1px solid #d4d7da;
}
.footer__claim { color: #3d4145; font-size: 15px; margin-bottom: 34px; }
.footer__wordmark {
  font-size: clamp(64px, 8.4vw, 140px); font-weight: 700; letter-spacing: -.045em; line-height: .95;
  color: var(--c-text-gray);
}
.footer__slash { font-weight: 300; }
.footer__desc { color: var(--c-text-dim); font-size: 14px; margin-top: 26px; }
.footer__copy { color: var(--c-text-mut); font-size: 13px; margin-top: 30px; }
.footer__phone { font-size: clamp(30px, 3vw, 48px); font-weight: 500; color: var(--c-text-gray); letter-spacing: -.01em; }
.footer__phone-col .footer__col-head { margin-bottom: 26px; }
.footer__top-btn {
  width: 54px; height: 54px; border: 0; border-radius: 12px; cursor: pointer;
  background: transparent; color: var(--c-accent); font-size: 34px;
  transition: transform .35s;
}
.footer__top-btn:hover { transform: translateY(-5px); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .perf__stats { grid-template-columns: 1fr 1fr; gap: 60px 40px; }
  .process__grid, .process__case { grid-template-columns: 1fr; gap: 44px; }
  .process__case-right { border-left: 0; padding-left: 0; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .team__foot { grid-template-columns: 1fr; gap: 40px; }
  .team__discover { border-left: 0; padding-left: 0; }
  .faq__grid { grid-template-columns: 1fr; gap: 60px; }
  .testi__top { grid-template-columns: 1fr; }
  .testi__cards { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr 1fr; }
  .blog-card--wide { grid-column: span 2; }
  .impact__grid { grid-template-columns: 1fr; gap: 70px; }
  .expert { grid-template-columns: 1fr; gap: 30px; justify-items: start; }
  .plan__body { grid-template-columns: 1fr; gap: 34px; }
  .footer__top { grid-template-columns: 1fr; gap: 50px; }
  .footer__brand { grid-template-columns: 1fr; align-items: start; gap: 40px; }
}
@media (max-width: 760px) {
  .nav__links { margin-left: auto; gap: 18px; }
  .nav__links .nav__link:nth-child(2) { display: none; }
  .hero__top { flex-direction: column; }
  .hero__headline { margin-left: 0; }
  .hero__stat { align-items: flex-start; text-align: left; }
  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .hero__showreel { width: 100%; }
  .hero__markers { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .section-head__ticks { display: none; }
  .service__body { grid-template-columns: 1fr; gap: 30px; }
  .service__thumb { margin-top: 30px; }
  .process__cards { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .blog-card--wide { grid-column: span 1; }
  .testi__spot-body { flex-direction: column; }
  .footer__contact { grid-template-columns: 1fr; gap: 40px; }
  .projects__more { flex-wrap: wrap; }
  .words__word { font-size: 15vw; }
}

/* Pozn.: na přání klienta neomezujeme animace přes prefers-reduced-motion —
   běží na všech zařízeních (viz motion layer níže). */

/* ==========================================================================
   SUBPAGES — sdílené prvky (work, studio, whispers, contact, legal, 404)
   ========================================================================== */
.nav__link[aria-current="page"] { color: var(--c-accent); --u: 1; }

/* ------- page hero ------- */
.phero { position: relative; overflow: hidden; padding: calc(var(--nav-h) + 96px) 0 76px; }
.phero.section-dark { background: var(--c-dark); }
.phero .container { position: relative; z-index: 2; }
.phero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .32; z-index: 1; }
.phero__bg + .phero__fade { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(5,6,9,.5) 0%, transparent 40%, var(--c-dark) 100%); }
.crumb { display: flex; align-items: center; gap: 12px; font-family: var(--f-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--c-text-mut); margin-bottom: 34px; }
.crumb a:hover { color: var(--c-accent); }
.crumb span { opacity: .5; }
.phero__eyebrow { font-family: var(--f-mono); font-size: 12px; text-transform: uppercase;
  letter-spacing: .05em; color: var(--c-accent); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.phero__eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--c-accent); }
.phero__title { font-size: clamp(46px, 6.4vw, 104px); font-weight: 500; line-height: 1; letter-spacing: -.03em; }
.section-dark .phero__title { color: #f4f4f4; }
.section-light .phero__title { color: #16181b; }
.phero__lead { max-width: 620px; margin-top: 30px; font-size: 17px; line-height: 1.6; }
.section-dark .phero__lead { color: #b7bbbf; }
.section-light .phero__lead { color: var(--c-text-dim); }
.phero__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.phero__meta .pill { background: rgba(255,255,255,.08); color: #dcdcdc; border: 1px solid rgba(255,255,255,.12); }
.section-light .phero__meta .pill { background: var(--c-gray-100); color: #4c5054; border-color: transparent; }

/* ==========================================================================
   WORK — index
   ========================================================================== */
.work-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; padding-block: 70px 40px; }
.worktile {
  position: relative; isolation: isolate; overflow: hidden; border-radius: var(--radius);
  min-height: 540px; display: flex; flex-direction: column; justify-content: space-between;
  padding: 34px; color: #fff;
}
.worktile img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.22,1,.36,1); }
.worktile:hover img { transform: scale(1.05); }
.worktile::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(200deg, rgba(5,6,9,.28), rgba(5,6,9,.82)); }
.worktile__top { display: flex; justify-content: space-between; align-items: flex-start; }
.worktile__brand { font-weight: 700; font-size: 18px; }
.worktile__brand span { font-size: .6em; vertical-align: super; }
.worktile__year { font-family: var(--f-mono); font-size: 11px; color: #dcdcdc; }
.worktile__title { font-size: clamp(34px, 3.4vw, 52px); font-weight: 500; letter-spacing: -.02em; line-height: 1.02; }
.worktile__sub { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .03em;
  color: #d6d6d6; margin: 12px 0 20px; }
.worktile__stack { display: flex; flex-wrap: wrap; gap: 8px; }
.worktile__stack li { font-family: var(--f-mono); font-size: 10px; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 20px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18); color: #eaeaea; }
.worktile__go { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: var(--c-accent); color: #fff; font-size: 18px; flex: none; transition: transform .4s; }
.worktile:hover .worktile__go { transform: translateX(5px); }
.worktile--wide { grid-column: span 2; }

/* ==========================================================================
   CASE STUDY
   ========================================================================== */
.case { background: var(--c-light); color: #16181b; }
.case__hero { position: relative; height: min(78vh, 760px); overflow: hidden; }
.case__hero img { width: 100%; height: 100%; object-fit: cover; }
.case__hero-fade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,6,9,.5) 0, transparent 30%, rgba(5,6,9,.6) 100%); }
.case__hero-inner { position: absolute; inset: auto 0 0 0; z-index: 2; padding-bottom: 50px; color: #fff; }
.case__hero-brand { font-family: var(--f-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: #eee; }
.case__hero-title { font-size: clamp(44px, 6vw, 100px); font-weight: 500; letter-spacing: -.03em; line-height: 1; margin-top: 16px; }
.case__intro { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; padding-block: 90px; align-items: start; }
.case__lead { font-size: clamp(22px, 2.2vw, 32px); font-weight: 500; line-height: 1.3; letter-spacing: -.01em; color: #1c1c1c; }
.case__lead-desc { margin-top: 26px; font-size: 16px; color: var(--c-text-dim); max-width: 560px; }
.case__facts { border-top: 1px solid rgba(0,0,0,.12); }
.case__facts dl { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,.1); margin: 0; }
.case__facts dt { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--c-text-mut); }
.case__facts dd { margin: 0; font-size: 14.5px; font-weight: 500; color: #2a2d31; text-align: right; }
.case__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-block: 20px 96px; }
.case__stat-num { font-size: clamp(44px, 5vw, 76px); font-weight: 600; letter-spacing: -.03em; color: var(--c-accent); line-height: 1; }
.case__stat-label { margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(0,0,0,.14);
  font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; color: #55585c; }
.case__section { display: grid; grid-template-columns: 260px 1fr; gap: 60px; padding-block: 30px; align-items: start; }
.case__section h2 { font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em;
  color: var(--c-accent); font-weight: 400; padding-top: 6px; }
.case__section-body { max-width: 720px; }
.case__section-body h3 { font-size: clamp(26px, 2.6vw, 38px); font-weight: 500; letter-spacing: -.015em; margin-bottom: 20px; color: #1c1c1c; }
.case__section-body p { font-size: 16px; color: var(--c-text-dim); margin-bottom: 18px; }
.case__section-body ul { margin: 6px 0 18px; }
.case__section-body li { position: relative; padding: 8px 0 8px 24px; color: #43474c; font-size: 15.5px; }
.case__section-body li::before { content: "+"; position: absolute; left: 0; color: var(--c-accent); }
.case__quote { padding-block: 80px; text-align: center; max-width: 900px; margin: 0 auto; }
.case__quote p { font-size: clamp(26px, 3vw, 44px); font-weight: 500; line-height: 1.3; letter-spacing: -.02em; color: #16181b; }
.case__quote cite { display: block; margin-top: 30px; font-style: normal; font-family: var(--f-mono);
  font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--c-text-mut); }
.case__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; padding-block: 30px 90px; }
.case__gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); aspect-ratio: 4/3; }
.case__gallery img:first-child { grid-column: span 2; aspect-ratio: 16/8; }
.nextcase { display: flex; justify-content: space-between; align-items: center; gap: 30px;
  padding-block: 60px; border-top: 1px solid rgba(0,0,0,.12); flex-wrap: wrap; }
.nextcase__label { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; color: var(--c-text-mut); }
.nextcase__title { font-size: clamp(30px, 3.4vw, 54px); font-weight: 500; letter-spacing: -.02em; margin-top: 8px; color: #16181b; }
.nextcase:hover .nextcase__title { color: var(--c-accent); }

/* ==========================================================================
   ARTICLE + PROSE
   ========================================================================== */
.article { background: var(--c-light); color: #1c1c1c; }
.article__wrap { max-width: 760px; margin: 0 auto; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; padding-block: 40px 20px; }
.article__meta .avatar { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.article__author b { display: block; font-size: 14px; }
.article__author span { font-size: 12.5px; color: var(--c-text-mut); }
.article__meta-r { margin-left: auto; font-family: var(--f-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: .03em; color: var(--c-text-mut); display: flex; gap: 16px; }
.article__cover { border-radius: var(--radius); overflow: hidden; margin-block: 26px 56px; }
.article__cover img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.prose { max-width: 760px; margin: 0 auto; }
.prose > * + * { margin-top: 22px; }
.prose p { font-size: 17px; line-height: 1.7; color: #33373b; }
.prose .lead { font-size: 20px; line-height: 1.6; color: #1c1c1c; font-weight: 500; }
.prose h2 { font-size: clamp(26px, 2.6vw, 36px); font-weight: 500; letter-spacing: -.015em; margin-top: 50px; color: #16181b; }
.prose h3 { font-size: 21px; font-weight: 600; margin-top: 36px; color: #1c1c1c; }
.prose ul, .prose ol { padding-left: 4px; }
.prose li { position: relative; padding: 8px 0 8px 26px; color: #3d4145; font-size: 16.5px; line-height: 1.6; }
.prose ul li::before { content: "+"; position: absolute; left: 0; color: var(--c-accent); font-weight: 600; }
.prose ol { counter-reset: n; }
.prose ol li::before { counter-increment: n; content: counter(n); position: absolute; left: 0; color: var(--c-accent);
  font-family: var(--f-mono); font-size: 12px; top: 10px; }
.prose blockquote { border-left: 3px solid var(--c-accent); padding: 6px 0 6px 28px; margin-block: 36px;
  font-size: 22px; font-weight: 500; line-height: 1.4; color: #1c1c1c; font-style: italic; }
.prose img { border-radius: var(--radius); width: 100%; margin-block: 40px; }
.prose figcaption { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; color: var(--c-text-mut);
  text-align: center; margin-top: -28px; }
.prose a:not(.btn) { color: var(--c-accent); text-decoration: underline; text-underline-offset: 3px; }
.prose hr { border: 0; border-top: 1px solid rgba(0,0,0,.12); margin-block: 46px; }
.article__foot { max-width: 760px; margin: 60px auto 0; padding-top: 34px; border-top: 1px solid rgba(0,0,0,.12);
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.article__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.article__tags .pill { background: var(--c-gray-100); color: #55585c; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; padding-block: 20px 120px; align-items: start; }
.cform { display: flex; flex-direction: column; gap: 26px; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field label { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: #6c7075; }
.field input, .field textarea, .field select {
  font: 16px var(--f-sans); padding: 15px 4px; border: 0; outline: 0; background: transparent;
  border-bottom: 1px solid #b7bbbf; color: #1c1c1c; border-radius: 0;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--c-accent); }
.field input::placeholder, .field textarea::placeholder { color: #a4a8ac; }
.cform__budget { display: flex; flex-wrap: wrap; gap: 10px; }
.cform__budget label { display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  padding: 9px 16px; border-radius: 22px; border: 1px solid #c4c7cb; font-family: var(--f-mono);
  font-size: 11px; text-transform: uppercase; color: #55585c; transition: .25s; }
.cform__budget input { position: absolute; opacity: 0; pointer-events: none; }
.cform__budget input:checked + label,
.cform__budget label:has(input:checked) { border-color: var(--c-accent); background: var(--c-accent); color: #fff; }
.cform__note { font-size: 13px; color: var(--c-text-mut); }
.cinfo { display: flex; flex-direction: column; gap: 34px; }
.cinfo__card { background: #fff; border-radius: var(--radius); padding: 30px; }
.cinfo__card--dark { background: #16181b; color: #fff; }
.cinfo__label { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .04em;
  color: var(--c-text-mut); margin-bottom: 14px; }
.cinfo__card--dark .cinfo__label { color: #9aa0a4; }
.cinfo__big { font-size: clamp(20px, 2vw, 26px); font-weight: 500; letter-spacing: -.01em; }
.cinfo__big.accent { color: var(--c-accent); }
.cinfo__person { display: flex; align-items: center; gap: 16px; margin-top: 20px; }
.cinfo__person img { width: 54px; height: 54px; border-radius: 10px; object-fit: cover; }
.cinfo__person b { display: block; font-size: 15px; }
.cinfo__person span { font-size: 13px; color: #9aa0a4; }
.cinfo__socials { display: flex; gap: 18px; flex-wrap: wrap; }
.cinfo__socials a { font-family: var(--f-mono); font-size: 12px; color: var(--c-accent); }
.cinfo__addr { font-style: normal; line-height: 1.9; font-size: 15px; color: #cfd2d5; }

/* ==========================================================================
   STUDIO
   ========================================================================== */
.studio__lead-sec { padding-block: 100px; }
.studio__manifesto { font-size: clamp(28px, 3.4vw, 56px); font-weight: 500; line-height: 1.22; letter-spacing: -.02em;
  max-width: 1100px; color: #1c1c1c; }
.studio__manifesto .accent { color: var(--c-accent); }
.studio__values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding-block: 60px 0; }
.value-card { background: #fff; border-radius: var(--radius); padding: 34px; min-height: 260px;
  display: flex; flex-direction: column; }
.value-card__num { font-family: var(--f-mono); font-size: 12px; color: var(--c-accent); }
.value-card h3 { font-size: 24px; font-weight: 500; margin: auto 0 14px; letter-spacing: -.01em; }
.value-card p { font-size: 14.5px; color: var(--c-text-dim); }
.studio__figures { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding-block: 80px; }

/* ==========================================================================
   LEGAL
   ========================================================================== */
.legal { background: var(--c-light); color: #1c1c1c; }
.legal__grid { display: grid; grid-template-columns: 240px 1fr; gap: 80px; padding-block: 70px 120px; align-items: start; }
.legal__toc { position: sticky; top: calc(var(--nav-h) + 30px); }
.legal__toc p { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; color: var(--c-text-mut); margin-bottom: 16px; }
.legal__toc a { display: block; padding: 7px 0; font-size: 14px; color: #55585c; border-left: 2px solid transparent; padding-left: 14px; }
.legal__toc a:hover { color: var(--c-accent); border-color: var(--c-accent); }
.legal__updated { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; color: var(--c-text-mut);
  padding-bottom: 30px; margin-bottom: 10px; border-bottom: 1px solid rgba(0,0,0,.12); }

/* ==========================================================================
   404
   ========================================================================== */
.nf { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
  position: relative; overflow: hidden; padding: 120px var(--pad); }
.nf__giant { font-size: clamp(140px, 30vw, 460px); font-weight: 700; letter-spacing: -.05em; line-height: .82;
  color: #0e0e0e; user-select: none; }
.nf__inner { position: relative; z-index: 2; }
.nf__code { font-family: var(--f-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--c-accent); margin-bottom: 20px; }
.nf__title { font-size: clamp(30px, 4vw, 54px); font-weight: 500; letter-spacing: -.02em; margin-bottom: 18px; }
.nf__desc { color: #b7bbbf; max-width: 460px; margin: 0 auto 40px; }
.nf__links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.nf__wm { position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; opacity: .5; }

/* ------- subpage responsive ------- */
@media (max-width: 1100px) {
  .work-list { grid-template-columns: 1fr; }
  .worktile--wide { grid-column: auto; }
  .case__intro { grid-template-columns: 1fr; gap: 44px; }
  .case__section { grid-template-columns: 1fr; gap: 20px; }
  .case__stats { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
  .contact__grid { grid-template-columns: 1fr; gap: 50px; }
  .studio__values { grid-template-columns: 1fr; }
  .studio__figures { grid-template-columns: 1fr 1fr; gap: 40px; }
  .legal__grid { grid-template-columns: 1fr; gap: 30px; }
  .legal__toc { position: static; }
  .legal__toc { display: none; }
}
@media (max-width: 760px) {
  .worktile { min-height: 440px; }
  .case__gallery { grid-template-columns: 1fr; }
  .case__gallery img:first-child { grid-column: span 1; }
  .case__stats { grid-template-columns: 1fr; }
  .cform__row { grid-template-columns: 1fr; }
  .studio__figures { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   MOTION LAYER — scroll efekty, reveal, kurzor, carousel
   (řízeno z main.js; vše degraduje na plně viditelný obsah bez JS)
   ========================================================================== */

/* ---- scroll progress ---- */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 200;
  transform: scaleX(0); transform-origin: 0 50%; pointer-events: none;
  background: linear-gradient(90deg, var(--c-accent), #ff9d6b);
}

/* ---- nav pohyb ---- */
.nav { transition: transform .5s cubic-bezier(.22,1,.36,1), background .4s ease, box-shadow .4s ease; }
.nav--scrolled { background: rgba(3,4,6,.94); box-shadow: 0 1px 0 rgba(255,255,255,.07); }

/* ---- text reveal masky ---- */
.line-mask { display: block; overflow: hidden; }
.line-in { display: block; will-change: transform; }
.word-mask { display: inline-block; overflow: hidden; vertical-align: top; }
.word-in { display: inline-block; will-change: transform; }

/* ---- custom cursor (jen desktop, additivní k nativnímu) ---- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 300; pointer-events: none;
  border-radius: 50%; mix-blend-mode: difference; will-change: transform;
}
.cursor-dot { width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px; background: #fff; }
.cursor-ring {
  width: 40px; height: 40px; margin: -20px 0 0 -20px;
  border: 1px solid rgba(255,255,255,.75);
  transition: width .28s cubic-bezier(.22,1,.36,1), height .28s cubic-bezier(.22,1,.36,1),
              margin .28s cubic-bezier(.22,1,.36,1), background .28s, border-color .28s, opacity .3s;
}
.cursor-ring.is-hover { width: 62px; height: 62px; margin: -31px 0 0 -31px; background: rgba(255,255,255,.15); border-color: transparent; }
.cursor-hidden { opacity: 0; }
html.has-cursor, html.has-cursor a, html.has-cursor button, html.has-cursor summary,
html.has-cursor .btn, html.has-cursor [role="button"] { cursor: none; }
html.has-cursor input, html.has-cursor textarea, html.has-cursor select { cursor: auto; }

/* ---- testimonials carousel ---- */
.testi__cards.is-carousel {
  display: flex; grid-template-columns: none; gap: 26px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 4px; cursor: grab;
  touch-action: pan-y;
}
.testi__cards.is-carousel::-webkit-scrollbar { display: none; }
.testi__cards.is-carousel.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.testi__cards.is-carousel > .quote-card {
  scroll-snap-align: start; flex: 0 0 clamp(280px, 31.5%, 460px); min-height: 340px;
}
.carousel-ctrl { display: flex; align-items: center; gap: 16px; margin-top: 34px; }
.carousel-dots { display: flex; align-items: center; gap: 8px; margin-right: auto; }
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: var(--c-gray-200); transition: width .3s, background .3s, border-radius .3s;
}
.carousel-dots button.is-active { background: var(--c-accent); width: 26px; border-radius: 4px; }
.carousel-arrow {
  width: 48px; height: 48px; border-radius: 12px; cursor: pointer; display: grid; place-items: center;
  border: 1px solid var(--c-gray-200); background: #fff; color: #26292d; font-size: 18px;
  transition: background .25s, color .25s, border-color .25s, transform .35s;
}
.carousel-arrow:hover { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.carousel-arrow[disabled] { opacity: .4; cursor: default; }

/* ---- marquee: pauza na hover ---- */
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---- extra headroom pro parallax pozadí (jen když běží anim) ---- */
.has-anim .phero__bg,
.has-anim .perf__bg,
.has-anim .impact__bg { height: 122%; top: -11%; }
.has-anim .case__hero img { height: 118%; }

/* Bez výjimek: kurzor, progress bar i parallax běží i na dotykových
   zařízeních a při prefers-reduced-motion (na výslovné přání klienta). */

/* ==========================================================================
   MOTION LAYER v2 — A + B (page transitions, hover, accordion, dividers…)
   ========================================================================== */

/* ---- A1: page transitions + intro ---- */
/* okamžité zakrytí při vstupu (bez fliknutí) — bezpečnostní timeout v head-guardu */
html.is-entering::before {
  content: ""; position: fixed; inset: 0; z-index: 620; background: var(--c-dark);
  pointer-events: none;
}
.pagefx {
  position: fixed; inset: 0; z-index: 640; background: var(--c-dark);
  transform: scaleY(0); transform-origin: bottom; pointer-events: none;
  display: grid; place-items: center; will-change: transform;
}
.pagefx__mark {
  font-size: clamp(38px, 6vw, 84px); font-weight: 700; letter-spacing: -.045em; line-height: 1;
  color: var(--c-light); opacity: 0;
}
.pagefx__mark .slash { font-weight: 300; color: #fff; }
.pagefx__mark .a { color: var(--c-accent); }
.pagefx__bar { width: min(230px, 56vw); height: 2px; background: rgba(255,255,255,.18); margin: 26px auto 0; overflow: hidden; }
.pagefx__bar i { display: block; height: 100%; width: 0; background: var(--c-accent); }
.pagefx__pct { font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; color: #9aa0a4; margin-top: 12px; }

/* ---- A3/B1: cursor label ---- */
.cursor-label {
  position: fixed; top: 0; left: 0; z-index: 320; pointer-events: none;
  transform: translate(-50%, -50%); transform-origin: center;
  background: var(--c-accent); color: #fff; font-family: var(--f-mono);
  font-size: 10px; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap;
  padding: 9px 14px; border-radius: 22px; opacity: 0; scale: .5;
  transition: opacity .28s cubic-bezier(.22,1,.36,1), scale .28s cubic-bezier(.22,1,.36,1);
}
.cursor-label.is-on { opacity: 1; scale: 1; }
.has-cursor .cursor-ring.is-label { opacity: 0 !important; }

/* ---- A2: scroll-velocity skew se řídí z JS (transform), zde jen hint ---- */
.skewable { will-change: transform; }

/* ---- A4: progresní linka u procesních karet ---- */
.proc-progress { position: relative; }
.proc-progress__line {
  position: absolute; left: 50%; top: 0; width: 2px; height: 100%;
  background: rgba(255,255,255,.1); transform: translateX(-50%); overflow: hidden;
}
.proc-progress__line i { position: absolute; inset: 0 0 auto 0; height: 0; background: var(--c-accent); }
@media (max-width: 1100px) { .proc-progress__line { display: none; } }

/* ---- A5: scrub reveal textu (slova ztmavují podle scrollu) ---- */
.scrub-word { transition: none; }
.section-dark .scrub-word { color: #3b3f44; }
.section-light .scrub-word { color: #c4c7cb; }

/* ---- B1: worktile / project directional hover ---- */
.worktile, .blog-card, .process__case-card { --rx: 0deg; --ry: 0deg; }
.worktile::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: linear-gradient(200deg, rgba(255,96,65,.18), transparent 60%);
  transition: opacity .5s; pointer-events: none;
}
.worktile:hover::before { opacity: 1; }
.worktile__go { transition: transform .45s cubic-bezier(.22,1,.36,1), background .3s; }
.worktile:hover .worktile__title { color: #fff; }

/* ---- B2: team grayscale -> barva + náklon ---- */
.member { transform-style: preserve-3d; }
.member img { transition: filter .6s ease, transform .6s cubic-bezier(.22,1,.36,1); }
.member:hover img { filter: grayscale(0) contrast(1.02); }

/* ---- B3: plynulý accordion ---- */
.qa > p, .plan__body { will-change: height; }
.qa.js-acc > p { overflow: hidden; }

/* ---- B4: bar fill pod procentními statistikami ---- */
.statbar { display: block; height: 3px; margin-top: 14px; border-radius: 2px;
  background: rgba(140,140,140,.25); overflow: hidden; }
.section-dark .statbar { background: rgba(255,255,255,.16); }
.statbar > i { display: block; height: 100%; width: 0; background: var(--c-accent); border-radius: 2px; }

/* ---- B5: nav underline draw + aktivní sekce ---- */
.nav__link { --u: 0; }
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1.5px;
  background: var(--c-accent); transform: scaleX(var(--u)); transform-origin: left; transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.nav__link:hover, .nav__link.is-active { --u: 1; }
.nav__link.is-active { color: var(--c-accent); }

/* ---- B6: buttons fill-sweep + arrow loop + input focus ---- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.btn--accent::before { background: #d8452a; }
.btn--white::before { background: var(--c-accent); }
.btn--white:hover { color: #fff; }
.btn:hover::before { transform: scaleX(1); }
@keyframes arrow-loop { 0% { transform: translateX(0); } 45% { transform: translateX(7px); opacity: 0; }
  46% { transform: translateX(-7px); opacity: 0; } 100% { transform: translateX(0); opacity: 1; } }
.btn:hover .btn__arrow { animation: arrow-loop .55s cubic-bezier(.22,1,.36,1); }
.field { position: relative; }
.field input, .field textarea { position: relative; }
.field::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--c-accent); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.field:focus-within::after { transform: scaleX(1); }

/* ---- B7: legal TOC aktivní kapitola ---- */
.legal__toc a.is-active { color: var(--c-accent); border-color: var(--c-accent); }
.prose blockquote { will-change: opacity, transform; }

/* ---- B8: dividers draw ---- */
.ruler, .projects__more-line { transform-origin: left center; }
.barcode { will-change: background-position; }

/* ---- B9: blur-up načítání obrázků ---- */
.img-blur { filter: blur(16px); transform: scale(1.04); opacity: .001; transition: none; }
.img-blur.is-loaded { filter: blur(0); transform: none; opacity: 1;
  transition: filter .8s ease, transform .8s cubic-bezier(.22,1,.36,1), opacity .6s ease; }
