/* Flying Steps – Cookie / Privacy Consent Banner */
.fs-consent {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 2147483600;
  margin: 0; width: 100%;
  background: rgba(12, 12, 14, 0.97);
  color: #f5f5f0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.45);
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  transform: translateY(20px); opacity: 0; pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.fs-consent.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fs-consent__inner { padding: 1.4rem 2rem; max-width: 1280px; margin: 0 auto; }
.fs-consent__title {
  font-family: 'Space Mono', 'JetBrains Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: #1E88E5; margin-bottom: 0.6rem;
}
.fs-consent__text {
  font-size: 0.88rem; line-height: 1.55; color: rgba(245,245,240,0.82);
  margin-bottom: 1rem;
}
.fs-consent__text a { color: #1E88E5; text-decoration: underline; text-underline-offset: 2px; }
.fs-consent__details {
  font-size: 0.78rem; line-height: 1.5; color: rgba(245,245,240,0.62);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.9rem; margin-top: 0.4rem; margin-bottom: 1rem;
  display: none;
}
.fs-consent__details.is-open { display: block; }
.fs-consent__details ul { margin: 0.4rem 0 0 1.1rem; padding: 0; }
.fs-consent__details li { margin-bottom: 0.3rem; }
.fs-consent__actions {
  display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center;
}
.fs-consent__btn {
  appearance: none; border: 1px solid rgba(255,255,255,0.18);
  background: transparent; color: #f5f5f0;
  font: inherit; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-family: 'Space Mono', monospace; font-weight: 600;
  padding: 0.7rem 1.1rem; border-radius: 999px; cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.fs-consent__btn:hover { border-color: rgba(255,255,255,0.45); }
.fs-consent__btn--primary {
  background: #1E88E5; border-color: #1E88E5; color: #fff;
}
.fs-consent__btn--primary:hover { background: #1772c4; border-color: #1772c4; }
.fs-consent__btn--ghost { color: rgba(245,245,240,0.7); border-color: rgba(255,255,255,0.08); }
.fs-consent__link {
  margin-left: auto; font-family: 'Space Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,245,240,0.55); text-decoration: none;
}
.fs-consent__link:hover { color: #1E88E5; }
.fs-consent__toggle {
  background: none; border: 0; padding: 0; margin-top: 0.4rem;
  color: rgba(245,245,240,0.55); cursor: pointer;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.fs-consent__toggle:hover { color: #1E88E5; }


/* Vimeo placeholder (no-consent) */
.fs-vimeo-placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: #0a0a0a center/cover no-repeat;
  color: #f5f5f0; text-align: center; padding: 1.5rem;
  z-index: 2;
}
.fs-vimeo-placeholder__inner {
  max-width: 520px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  backdrop-filter: blur(8px);
}
.fs-vimeo-placeholder p {
  font-size: 0.92rem; line-height: 1.5; margin-bottom: 1rem;
  color: rgba(245,245,240,0.85);
}
.fs-vimeo-placeholder button {
  appearance: none; border: 0; background: #1E88E5; color: #fff;
  font-family: 'Space Mono', monospace; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  padding: 0.7rem 1.2rem; border-radius: 999px; cursor: pointer;
}
.fs-vimeo-placeholder button:hover { background: #1772c4; }

@media (max-width: 640px) {
  .fs-consent {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 150px);
  }
  .fs-consent__inner { padding: 1.1rem 1.2rem; }
  .fs-consent__btn { padding: 0.6rem 0.9rem; font-size: 0.66rem; }
  .fs-consent__link { width: 100%; margin: 0.4rem 0 0; }
}
