/* Flexi-Závoz s.r.o. — one-page web
   Paleta: asfaltová čerň + výstražná žlutá */

:root {
  --black: #0c0c0c;
  --black-2: #151515;
  --ink: #1a1a1a;
  --yellow: #ffd400;
  --yellow-dim: #d9b400;
  --paper: #f4f1ea;
  --paper-dim: #b9b5ac;
  --line: rgba(244, 241, 234, 0.14);
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-sans: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --pad: clamp(1.25rem, 5vw, 6rem);
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

::selection {
  background: var(--yellow);
  color: var(--black);
}

/* jemné zrno přes celou stránku */
.grain {
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 60;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--yellow);
  color: var(--black);
  padding: 0.75rem 1rem;
  z-index: 100;
  font-family: var(--font-mono);
}
.skip:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

/* --- výstražná páska --------------------------------------------------- */
.tape__inner {
  height: 100%;
  background-image: repeating-linear-gradient(-45deg, var(--yellow) 0 18px, var(--black) 18px 36px);
  background-size: 51px 51px;
  animation: tape 2.4s linear infinite;
}
@keyframes tape {
  to {
    background-position: 51px 0;
  }
}

/* --- navigace ----------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem var(--pad);
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.nav.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(12, 12, 12, 0.92);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.nav__mark {
  width: 1.1rem;
  height: 1.1rem;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
}
.dash {
  color: var(--yellow);
}

.nav__links {
  margin-left: auto;
  display: flex;
  gap: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.nav__links a {
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.nav__links a:hover,
.nav__links a.is-active {
  border-bottom-color: var(--yellow);
}
.idx {
  color: var(--yellow-dim);
  margin-right: 0.35rem;
}

/* --- tlačítka ----------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.15rem;
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--yellow);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.2s;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--paper);
}
.btn:active {
  transform: translate(0, 0);
  box-shadow: none;
}

.btn--big {
  padding: 1rem 1.6rem;
  font-size: 1rem;
}
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line);
  padding: 1rem 1.6rem;
  font-size: 1rem;
}
.btn--ghost:hover {
  border-color: var(--yellow);
  box-shadow: 4px 4px 0 var(--yellow);
}

.btn__pulse,
.callbar__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.7);
  }
}

/* --- mobilní menu -------------------------------------------------------- */
.nav__burger {
  display: none;
  width: 42px;
  height: 34px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav__burger span {
  display: block;
  height: 2px;
  width: 18px;
  background: var(--paper);
  margin: 0 auto;
  transition: transform 0.25s;
}
.nav__burger span + span {
  margin-top: 5px;
}
.nav__burger[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile {
  position: sticky;
  top: 58px;
  z-index: 49;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem var(--pad) 1.5rem;
  background: var(--black-2);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
}
.mobile[hidden] {
  display: none;
}
.mobile a {
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile__call {
  margin-top: 0.75rem;
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  border: none !important;
  border-radius: var(--radius);
}

/* --- hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(3rem, 9vh, 7rem) 0 0;
}
.hero__tape {
  height: 10px;
  margin-bottom: clamp(2.5rem, 7vw, 5rem);
}

.hero__grid {
  padding: 0 var(--pad);
  max-width: 1400px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-dim);
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.9rem, 11vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line > span {
  display: block;
  transform: translateY(105%);
  animation: rise 0.9s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.hero__title .line:nth-child(2) > span {
  animation-delay: 0.09s;
}
.hero__title .line:nth-child(3) > span {
  animation-delay: 0.18s;
}
.hero__title em {
  font-style: italic;
  color: var(--yellow);
  letter-spacing: -0.05em;
}
@keyframes rise {
  to {
    transform: translateY(0);
  }
}

.hero__lead {
  max-width: 46ch;
  margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.35rem);
  color: var(--paper-dim);
}
.hero__lead strong {
  color: var(--paper);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0;
  margin: 0 0 clamp(3rem, 8vw, 5rem);
  border-top: 1px solid var(--line);
}
.hero__facts > div {
  padding: 1.25rem 1.5rem 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.hero__facts dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.35rem;
}
.hero__facts dd {
  margin: 0;
  color: var(--paper-dim);
  font-size: 0.95rem;
}

/* --- ticker -------------------------------------------------------------- */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black-2);
  padding: 0.85rem 0;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: slide 34s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3.4vw, 2.6rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--paper-dim);
}
.ticker__track i {
  color: var(--yellow);
  -webkit-text-stroke: 0;
  font-style: normal;
  font-size: 0.5em;
}
@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

/* --- sekce --------------------------------------------------------------- */
.section {
  padding: clamp(4rem, 11vw, 9rem) var(--pad);
  max-width: 1400px;
  margin: 0 auto;
}
.section--services {
  background: var(--black-2);
  max-width: none;
}
.section--services > * {
  max-width: 1400px;
  margin-inline: auto;
}

.section__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.section__idx {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--yellow);
  letter-spacing: 0.12em;
}
.section__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 4.25rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
}

/* --- o nás --------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about__text p {
  color: var(--paper-dim);
  max-width: 54ch;
}
.about__text .lead {
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.6rem);
  line-height: 1.45;
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.about__text strong {
  color: var(--yellow);
  font-weight: 700;
}

.link-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 3px;
}
.link-arrow:hover {
  color: var(--yellow);
}

.about__points {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about__points li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}
.about__points li:last-child {
  border-bottom: 1px solid var(--line);
}
.about__points .num {
  grid-row: span 2;
  font-family: var(--font-mono);
  color: var(--black);
  background: var(--yellow);
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  font-size: 0.85rem;
}
.about__points h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.about__points p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 0.95rem;
}

/* --- služby -------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card {
  position: relative;
  background: var(--black-2);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: background 0.25s;
}
.card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.card:hover {
  background: var(--ink);
}
.card:hover::after {
  transform: scaleX(1);
}
.card__no {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--yellow);
  letter-spacing: 0.16em;
}
.card h3 {
  margin: 0.75rem 0 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.1rem + 0.6vw, 1.75rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.card p {
  margin: 0 0 1rem;
  color: var(--paper-dim);
  font-size: 0.97rem;
}
.card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}
.card li {
  padding: 0.4rem 0 0.4rem 1.2rem;
  position: relative;
  color: var(--paper-dim);
  border-top: 1px dashed var(--line);
}
.card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius);
}
.cta-strip p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 1rem + 1.2vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 22ch;
}
.cta-strip .btn {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.cta-strip .btn:hover {
  box-shadow: 4px 4px 0 rgba(12, 12, 12, 0.35);
}
.cta-strip .btn__pulse {
  background: var(--yellow);
}

/* --- kontakt ------------------------------------------------------------- */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact__pitch .big {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.2rem + 2vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.muted {
  color: var(--paper-dim);
  font-size: 0.95rem;
}

.contact__cards {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.contact__card {
  display: grid;
  gap: 0.3rem;
  padding: 1.4rem clamp(1.2rem, 2.5vw, 1.9rem);
  background: var(--black);
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.contact__card:hover {
  background: var(--yellow);
  color: var(--black);
}
.contact__card:hover .contact__label,
.contact__card:hover .contact__hint {
  color: var(--black);
}
.contact__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}
.contact__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 0.9rem + 0.85vw, 1.7rem);
  letter-spacing: -0.03em;
  word-break: break-word;
}
.contact__hint {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--paper-dim);
}
.contact__card--static:hover {
  background: var(--black);
  color: inherit;
}

/* --- patička ------------------------------------------------------------- */
.footer {
  margin-top: clamp(2rem, 6vw, 4rem);
}
.footer__tape {
  height: 8px;
}
.footer__in {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem var(--pad) 5.5rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--paper-dim);
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--paper);
  font-size: 1rem;
}
.footer__links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer__links a {
  text-decoration: none;
}
.footer__links a:hover {
  color: var(--yellow);
}

/* --- plovoucí volací lišta (mobil) --------------------------------------- */
.callbar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 55;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem;
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
  font-family: var(--font-mono);
  font-weight: 500;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

/* --- reveal animace ------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* --- responzivita -------------------------------------------------------- */
@media (max-width: 900px) {
  .about,
  .contact {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: block;
    margin-left: auto;
  }
  .callbar {
    display: flex;
  }
  .footer__in {
    padding-bottom: 6.5rem;
  }
  .hero__title {
    font-size: clamp(2.6rem, 13vw, 4.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__title .line > span {
    transform: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --- právní blok v patičce ------------------------------------------------ */
.footer__legal {
  padding: 0 var(--pad) 5.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--paper-dim);
}
.footer__ident {
  font-style: normal;
  line-height: 1.8;
  max-width: 60ch;
}
.footer__ident a,
.footer__legal-links a {
  color: var(--paper-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__ident a:hover,
.footer__legal-links a:hover {
  color: var(--yellow);
}
.footer__legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* --- jednoduché podstránky (404, právní texty) ---------------------------- */
.page {
  padding: clamp(6rem, 14vw, 9rem) var(--pad) clamp(3rem, 8vw, 5rem);
}
.page__in {
  max-width: 1400px;
  margin: 0 auto;
}
.page__in--text {
  max-width: 72ch;
}
.page__title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(2.2rem, 7vw, 4rem);
  margin: 0.5rem 0 1rem;
}
.page__lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: var(--paper-dim);
  max-width: 60ch;
}
.page__in h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.2rem + 0.8vw, 1.8rem);
  margin: 2.5rem 0 0.75rem;
}
.page__in ul {
  padding-left: 1.1rem;
}
.page__in li {
  margin-bottom: 0.5rem;
}
.page__nav {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-family: var(--font-mono);
}
.page__nav a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}
.page__nav a:hover {
  color: var(--yellow);
}

/* --- lišta souhlasu s cookies -------------------------------------------- */
.btn--sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
}
.cookies {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: var(--black-2);
  border-top: 2px solid var(--yellow);
  color: var(--paper);
}
.cookies[hidden] {
  display: none;
}
.cookies__in {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.1rem var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}
.cookies__text {
  max-width: 70ch;
  font-size: 0.88rem;
}
.cookies__title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 0.35rem;
}
.cookies__text p {
  margin: 0;
}
.cookies__text a {
  color: var(--paper);
}
.cookies__toggle {
  margin-top: 0.5rem;
  background: none;
  border: 0;
  padding: 0;
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.cookies__detaily[hidden] {
  display: none;
}

.cookies__detaily {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}
.cookies__detaily label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.cookies__akce {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

body:has(.cookies:not([hidden])) .callbar {
  display: none;
}

@media (max-width: 640px) {
  .footer__legal {
    padding-bottom: 6.5rem;
  }
  .cookies__in {
    padding-bottom: 1.25rem;
  }
  .cookies__akce .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}
