/* A small crop from the sky, with readable light controls over the film. */
.cinema-home .site-header {
  position: fixed;
  background: rgba(250, 248, 245, .46);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 0;
  color: var(--ink);
  height: auto;
  padding: 16px clamp(20px, 4vw, 64px);
  align-items: center;
  pointer-events: none;
}
.cinema-home .site-header .brand,
.cinema-home .site-header .menu-toggle {
  pointer-events: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.cinema-home .site-header .brand { display: block; padding: 0; filter: none; }
.cinema-home .site-header .brand img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(9%) saturate(470%) hue-rotate(355deg);
}
.cinema-home .site-header .menu-toggle { margin-left: auto; width: 96px; min-height: 48px; padding: 12px 0; color: #514a42; }
.cinema-home .menu-toggle .menu-label { font-size: 11px; font-weight: 500; }
.cinema-home .menu-toggle .menu-lines i { height: 2px; }
.cinema-hero { position: relative; background: var(--paper); }
.cinema-stage { position: relative; }
.cinema-visual { position: relative; width: 100%; height: min(50vw, 100svh); overflow: hidden; }
.cinema-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  background: var(--paper);
}
.cinema-video:focus-visible { outline: 2px solid var(--ink); outline-offset: -4px; }
.cinema-skip {
  position: absolute;
  bottom: max(24px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #514a42;
  background: rgba(250, 248, 245, .94);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px #625b5326;
  z-index: 2;
}
.cinema-skip svg { height: 32px; }
.cinema-skip:hover { background: var(--paper); }
.cinema-skip:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.cinema-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
html:has(.cinema-home) { scroll-padding-top: calc(var(--header-height, 112px) + 16px); }
.cinema-home #yaklasim { scroll-margin-top: 0; }
@media (max-width: 760px) {
  .cinema-home .site-header { height: auto; padding: 12px 16px; }
  .cinema-home .site-header .brand { padding: 0; }
  .cinema-home .site-header .menu-toggle { width: 88px; min-height: 44px; padding: 10px 0; }
  .cinema-home .brand img { width: 72px; height: 55px; }
  .cinema-skip { width: 44px; height: 44px; bottom: 12px; }
  .cinema-skip svg { height: 26px; }
}

.cinema-home .site-header.is-past-hero { background: rgba(250, 248, 245, .94); }
