@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}

body {
  min-height: 100vh;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.6;
  font-family: "Special Elite", monospace;
  color: #000000;
  background-color: #FFFFFF;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

input, textarea, select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Hiragino Maru Gothic ProN", "Helvetica Neue", sans-serif;
  font-weight: normal;
  line-height: 1.2;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #FFFFFF;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}
.preloader.is-cached {
  display: none;
}
.preloader.is-hiding {
  opacity: 0;
  visibility: hidden;
}
.preloader.is-hidden {
  display: none;
}
.preloader__birds {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .preloader__birds {
    width: 90px;
    height: 90px;
    margin-bottom: 18px;
  }
}
.preloader__bird {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.preloader__bird.is-active {
  opacity: 1;
  transform: scale(1);
}
.preloader__text {
  font-family: "Special Elite", monospace;
  font-size: 20px;
  color: #000000;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .preloader__text {
    font-size: 16px;
    margin-bottom: 18px;
  }
}
.preloader__bar {
  width: 160px;
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .preloader__bar {
    width: 120px;
  }
}
.preloader__progress {
  height: 100%;
  width: 0%;
  background: #000000;
  border-radius: 2px;
  transition: width 0.3s ease-out;
}

h1, h2, h3, h4 {
  font-family: "Special Elite", monospace;
}

h1 {
  font-size: 3rem;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: 1.875rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1em;
  font-size: 1rem;
}

.text-muted {
  color: #707070;
}

.text-accent {
  color: #8B0000;
}

.text-small {
  font-size: 0.875rem;
}

.text-center {
  text-align: center;
}

.font-heading {
  font-family: "Hiragino Maru Gothic ProN", "Helvetica Neue", sans-serif;
}

.font-secondary {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.container {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
}

.section {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
}

.section--gray {
  background-color: #E3E3E3;
}

.section--news {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.section__bird {
  position: absolute;
  top: -20px;
  right: 180px;
  width: 120px;
  height: auto;
  pointer-events: none;
  transform: scaleX(-1);
}
@media (max-width: 767px) {
  .section__bird {
    width: 70px;
    top: 5px;
    right: 80px;
  }
}

.grid {
  display: grid;
  gap: 32px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

.page-content {
  padding-top: 100px;
  margin: 0;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .page-content {
    padding-top: 60px;
  }
}
.page-content--home {
  padding-top: 0;
}
@media (max-width: 767px) {
  .page-content--home {
    padding-top: 0;
  }
}
.page-content--bio {
  padding-top: 0;
}
@media (max-width: 767px) {
  .page-content--bio {
    padding-top: 60px;
  }
}

.page-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  flex: 1;
  text-align: center;
  padding: 60px 30px;
}
.page-placeholder h1 {
  font-family: "Special Elite", monospace;
  font-size: 32px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
  background: #FFFFFF;
  padding: 8px 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-placeholder h1 {
    margin-bottom: 0;
  }
}
.page-placeholder p {
  font-family: "Special Elite", monospace;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
  background: #FFFFFF;
  padding: 6px 20px;
  position: relative;
  z-index: 1;
}
.page-placeholder__img {
  display: none;
}
@media (max-width: 767px) {
  .page-placeholder__img {
    display: block;
    width: 60%;
    max-width: 260px;
    height: auto;
    margin-top: 0;
  }
}
.page-placeholder__bird {
  width: 120px;
  height: auto;
  margin: 20px 0 10px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-placeholder__bird {
    width: 80px;
    margin: 16px 0 8px;
  }
}
@media (max-width: 767px) {
  .page-placeholder {
    min-height: auto;
    padding: 40px 20px 30px;
    justify-content: flex-start;
  }
}
.page-placeholder--muzyka {
  background: url("/images/muz_bg.png") right bottom/auto 90% no-repeat;
}
@media (max-width: 767px) {
  .page-placeholder--muzyka {
    background: none;
  }
}
.page-placeholder--lam {
  background: url("/images/lam_bg.png") right bottom/auto 90% no-repeat;
}
@media (max-width: 767px) {
  .page-placeholder--lam {
    background: none;
  }
}
.page-placeholder--literatura {
  background: url("/images/lit_bg.png") 10% center/auto 55% no-repeat, url("/images/lit2_bg.png") 93% center/auto 70% no-repeat;
}
@media (max-width: 767px) {
  .page-placeholder--literatura {
    background: none;
  }
}
.page-placeholder--kontakt {
  background: url("/images/sowa_bg.png") right bottom/auto 80% no-repeat;
  align-items: flex-start;
  text-align: left;
  padding: 60px 60px 60px 260px;
}
@media (max-width: 767px) {
  .page-placeholder--kontakt {
    padding: 40px 20px 30px;
    background: none;
    align-items: center;
    text-align: center;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
  transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
  .site-header {
    display: none;
  }
}
.site-header--home {
  transform: translateY(-100%);
  opacity: 0;
}
.site-header--home.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.site-small-logo {
  position: fixed;
  top: 85px;
  left: 50px;
  z-index: 1001;
  width: 165px;
  height: 165px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-out;
  background: black;
  border-radius: 50%;
  text-decoration: none;
  display: block;
}
.site-small-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.site-small-logo.is-visible {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .site-small-logo {
    width: 50px;
    height: 50px;
    top: 5px;
    left: 12px;
  }
}

.mobile-topbar {
  display: none;
}
@media (max-width: 767px) {
  .mobile-topbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    pointer-events: none;
  }
  .mobile-topbar.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.hamburger {
  display: none;
  position: fixed;
  top: 8px;
  right: 12px;
  z-index: 1102;
  width: 44px;
  height: 44px;
  padding: 10px 8px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }
}
.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: #000000;
  border-radius: 2px;
  transition: all 0.3s ease-out;
  transform-origin: center;
}
.hamburger.is-open {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.hamburger.is-open .hamburger__line {
  background: #000000;
  height: 3px;
}
.hamburger.is-open .hamburger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open .hamburger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  gap: 0;
}
@media (max-width: 767px) {
  .main-nav {
    display: none;
  }
}

.main-nav__link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  font-family: "Special Elite", monospace;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
}
.main-nav__link span {
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.main-nav__link:last-of-type {
  border-right: none;
}
.main-nav__link:hover {
  background: rgba(0, 0, 0, 0.05);
}
.main-nav__link:hover .main-nav__bird {
  opacity: 1;
}
.main-nav__link:nth-child(1):hover span {
  transform: translateX(25px);
}
.main-nav__link:nth-child(1):hover .main-nav__bird {
  transform: translate(-140%, 10%) rotate(5deg);
}
.main-nav__link:nth-child(2):hover span {
  transform: translateX(-15px);
}
.main-nav__link:nth-child(2):hover .main-nav__bird {
  transform: translate(10%, -20%) rotate(-5deg);
}
.main-nav__link:nth-child(3):hover span {
  transform: translateY(-9px);
}
.main-nav__link:nth-child(3):hover .main-nav__bird {
  transform: translate(-50%, 10%) rotate(5deg);
}
.main-nav__link:nth-child(4):hover span {
  transform: translateX(-25px);
}
.main-nav__link:nth-child(4):hover .main-nav__bird {
  transform: translate(10%, 10%) rotate(-8deg);
}
.main-nav__link:nth-child(5):hover span {
  transform: translateX(22px);
}
.main-nav__link:nth-child(5):hover .main-nav__bird {
  transform: translate(-110%, -5%) rotate(8deg);
}
.main-nav__link:nth-child(6):hover span {
  transform: translateX(-18px);
}
.main-nav__link:nth-child(6):hover .main-nav__bird {
  transform: translate(-5%, -5%) rotate(-3deg);
}
.main-nav__link--active {
  background: #000000;
  color: #FFFFFF;
  pointer-events: none;
}

.main-nav__bird {
  position: absolute;
  left: 50%;
  top: 0;
  width: 90px;
  height: 90px;
  object-fit: contain;
  opacity: 0;
  transform: translate(-50%, 100%) rotate(15deg);
  transition: opacity 0.4s ease-out, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  height: -webkit-fill-available;
  background: #FFFFFF;
  z-index: 1101;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease-out;
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  padding: 50px 24px 30px;
  gap: 20px;
}
.mobile-menu__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.is-open .mobile-menu__item {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu__item:nth-child(1) {
  transition-delay: 0.07s;
}
.mobile-menu__item:nth-child(2) {
  transition-delay: 0.14s;
}
.mobile-menu__item:nth-child(3) {
  transition-delay: 0.21s;
}
.mobile-menu__item:nth-child(4) {
  transition-delay: 0.28s;
}
.mobile-menu__item:nth-child(5) {
  transition-delay: 0.35s;
}
.mobile-menu__item:nth-child(6) {
  transition-delay: 0.42s;
}
.mobile-menu__item--active {
  background: #000000;
}
.mobile-menu__item--active .mobile-menu__bird {
  filter: invert(1);
}
.mobile-menu__item--active .mobile-menu__label {
  color: #FFFFFF;
}
.mobile-menu__bird {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
  object-fit: contain;
}
.mobile-menu__label {
  font-family: "Special Elite", monospace;
  font-size: 30px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  letter-spacing: 0.02em;
}

.site-footer {
  background-color: #FFFFFF;
  color: rgba(0, 0, 0, 0.6);
  padding: 40px 0 50px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.site-footer a {
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: color 0.3s ease-out;
}
.site-footer a:hover {
  color: #000000;
}

.footer__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer__logo {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}

.footer__info p {
  margin: 0;
  line-height: 1.8;
}

.footer__copyright {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

.footer__contact {
  color: rgba(0, 0, 0, 0.5);
}

.footer__legal {
  color: rgba(0, 0, 0, 0.35);
  font-size: 12px;
}
.footer__legal a {
  color: rgba(0, 0, 0, 0.35);
}
.footer__legal a:hover {
  color: rgba(0, 0, 0, 0.7);
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.footer__social a {
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
}
.footer__social a:hover {
  color: #000000;
}

.footer__dot {
  color: rgba(0, 0, 0, 0.25);
  font-size: 10px;
}

@media (max-width: 767px) {
  .site-footer {
    padding: 30px 0 40px;
  }
  .footer__top {
    flex-direction: column;
    gap: 12px;
  }
  .footer__logo {
    width: 40px;
    height: 40px;
  }
}
.hero {
  position: relative;
  width: 100vw;
  max-width: 100%;
  aspect-ratio: 3411/6500;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 25vh;
  background-size: 100% auto;
  background-position: center -250px;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero {
    background-size: cover;
    background-position: center top;
  }
}

.hero__overlay {
  position: absolute;
  bottom: -5%;
  left: 0;
  width: 100%;
  aspect-ratio: 2890/2975;
  background-image: url("/images/bloki_2.png");
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
  transform: scale(var(--overlay-scale, 1.15));
  transform-origin: center bottom;
  will-change: transform;
}
@media (max-width: 767px) {
  .hero__overlay {
    bottom: -8%;
    transform: scale(var(--overlay-scale, 1.08));
  }
}

.hero-nav {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  gap: 7.7vw;
  padding: 8px 12px;
  border-radius: 60px;
  transition: none;
}
.hero-nav--scrolled {
  top: 0;
  left: 0;
  right: 0;
  transform: none;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  border-radius: 0;
  padding: 18px 40px;
  gap: 2vw;
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}
.hero-nav--scrolled .hero-nav__circle {
  width: 80px;
  height: 80px;
}
@media (max-width: 767px) {
  .hero-nav {
    gap: 3vw;
    top: 8px;
    padding: 4px 6px;
  }
  .hero-nav--scrolled {
    top: 0;
    padding: 4px 0;
    gap: 1.5vw;
  }
}

.hero-nav__logo {
  display: none;
  margin-right: auto;
}
.hero-nav--scrolled .hero-nav__logo {
  display: flex;
  align-items: center;
}
.hero-nav__logo img {
  height: 80px;
  width: auto;
  border-radius: 50%;
}

.hero-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease-out;
}
.hero-nav__item:hover {
  transform: translateY(-4px);
}
.hero-nav--scrolled .hero-nav__item {
  pointer-events: auto;
}

.hero-nav__circle {
  width: 8.65vw;
  height: 8.65vw;
  min-width: 50px;
  min-height: 50px;
  max-width: 166px;
  max-height: 166px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #000000;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.7), 0 0 100px rgba(0, 0, 0, 0.4), 0 0 150px rgba(0, 0, 0, 0.15), inset 0 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease-out;
  position: relative;
}
.hero-nav__item:hover .hero-nav__circle, .hero-nav__item--active .hero-nav__circle {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9), 0 0 120px rgba(0, 0, 0, 0.5), 0 0 180px rgba(0, 0, 0, 0.2), inset 0 0 25px rgba(0, 0, 0, 0.15);
}
.hero-nav--scrolled .hero-nav__circle {
  width: 80px;
  height: 80px;
  border-color: #FFFFFF;
  box-shadow: none;
}
@media (max-width: 767px) {
  .hero-nav__circle {
    width: 13vw;
    height: 13vw;
    min-width: 36px;
    min-height: 36px;
    max-width: 56px;
    max-height: 56px;
    border-width: 1px;
  }
}

.hero-nav__icon {
  width: 30%;
  height: 30%;
  object-fit: contain;
}
.hero-nav__icon--flip {
  transform: scaleX(-1);
}

.hero-nav__label {
  font-family: "Special Elite", monospace;
  font-size: 1.1vw;
  transition: font-size 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-nav--scrolled .hero-nav__label {
  font-size: 9px;
}
.hero-nav__label {
  color: #000000;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .hero-nav__label {
    font-size: 8px;
  }
}

.hero__content {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  pointer-events: none;
  will-change: transform, opacity;
  transform-origin: center center;
}

.hero__logo {
  width: 380px;
  height: auto;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.9), 0 0 150px rgba(0, 0, 0, 0.6), 0 0 250px rgba(0, 0, 0, 0.35), 0 0 350px rgba(0, 0, 0, 0.15);
  position: relative;
  display: block;
  background: black;
}
@media (max-width: 767px) {
  .hero__logo {
    width: 200px;
  }
}

.hero__tagline {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 280px));
  z-index: 5;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  font-family: "Special Elite", monospace;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  will-change: opacity;
}
@media (max-width: 767px) {
  .hero__tagline {
    font-size: 14px;
    padding: 12px 24px;
    transform: translate(-50%, calc(-50% + 180px));
  }
}

.hero__content::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  z-index: 6;
}
@media (max-width: 767px) {
  .hero__content::after {
    width: 200px;
    height: 200px;
  }
}

.hero__bio-text {
  position: absolute;
  bottom: 35%;
  left: 60px;
  max-width: 550px;
  z-index: 5;
  font-family: "Special Elite", monospace;
  font-size: 1rem;
  line-height: 1.7;
  color: #000000;
}
@media (max-width: 767px) {
  .hero__bio-text {
    left: 16px;
    right: 16px;
    bottom: 30%;
    max-width: none;
    font-size: 0.875rem;
  }
}

.hero__scroll {
  position: fixed;
  bottom: 40px;
  left: 60px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 3.8vw;
  min-width: 50px;
  max-width: 72px;
  background: #FFFFFF;
  border: 2px solid #000000;
  border-radius: 40px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.7), 0 0 100px rgba(0, 0, 0, 0.4), 0 0 150px rgba(0, 0, 0, 0.15);
  padding: 5.5vw 0;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  animation: scroll-bounce 2s infinite;
  transition: opacity 0.3s ease-out;
}
.hero__scroll.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero__scroll {
    left: 10px;
    bottom: 16px;
    width: 44px;
    min-width: 44px;
    padding: 28px 0;
    gap: 6px;
  }
}

.hero__scroll-text {
  font-family: "Special Elite", monospace;
  font-size: 0.9vw;
  text-transform: uppercase;
  color: #000000;
  writing-mode: vertical-lr;
  text-orientation: upright;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .hero__scroll-text {
    font-size: 9px;
  }
}

.hero__scroll-arrow {
  width: 1.3vw;
  height: 1.3vw;
  min-width: 16px;
  min-height: 16px;
  max-width: 26px;
  max-height: 26px;
}
@media (max-width: 767px) {
  .hero__scroll-arrow {
    width: 14px;
    height: 14px;
  }
}

@keyframes scroll-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
  }
}
.page-hero {
  position: relative;
  width: 100vw;
  max-width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}
.page-hero--short {
  min-height: 50vh;
  max-height: 500px;
  background-position: center;
}
@media (max-width: 767px) {
  .page-hero--short {
    min-height: 40vh;
    max-height: 350px;
  }
}
.page-hero--bio {
  min-height: auto;
  background: #FFFFFF;
  padding-top: 160px;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .page-hero--bio {
    padding-top: 100px;
  }
}

.page-hero__logo {
  position: absolute;
  top: 24px;
  left: 40px;
  z-index: 10;
}
.page-hero__logo img {
  width: 80px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.7), 0 0 100px rgba(0, 0, 0, 0.4), 0 0 150px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .page-hero__logo {
    left: 16px;
    top: 16px;
  }
  .page-hero__logo img {
    width: 50px;
  }
}

.page-hero__characters-wrapper {
  width: 100%;
  margin-top: auto;
  pointer-events: none;
}

.page-hero__characters {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom;
}

.page-hero__overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.page-hero__text {
  position: absolute;
  bottom: 80px;
  left: 40px;
  max-width: 500px;
  z-index: 5;
  font-family: "Special Elite", monospace;
  font-size: 1rem;
  line-height: 1.7;
  color: #000000;
}
@media (max-width: 767px) {
  .page-hero__text {
    left: 16px;
    right: 16px;
    bottom: 30px;
    max-width: none;
    font-size: 0.875rem;
  }
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0;
}

.news-card {
  padding: 40px 0;
  border-bottom: 1px solid #E3E3E3;
}
.news-card:first-child {
  padding-top: 0;
}
@media (max-width: 767px) {
  .news-card {
    padding: 24px 0;
  }
}

.news-card__title {
  font-family: "Special Elite", monospace;
  font-size: 1.875rem;
  font-weight: bold;
  margin: 0 0 16px;
  line-height: 1.3;
  padding-bottom: 16px;
  border-bottom: 1px solid #000000;
}
.news-card__title a {
  transition: color 0.3s ease-out;
}
.news-card__title a:hover {
  color: #8B0000;
}
@media (max-width: 767px) {
  .news-card__title {
    font-size: 1.5rem;
  }
}

.news-card__body {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .news-card__body {
    display: block;
  }
}

.news-card__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
@media (max-width: 767px) {
  .news-card__image {
    display: none;
  }
}

.news-card__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news-card__date {
  font-family: "Special Elite", monospace;
  font-size: 1.25rem;
  font-weight: bold;
  color: #000000;
  margin: 0 0 8px;
}
@media (max-width: 767px) {
  .news-card__date {
    font-size: 1rem;
  }
}

.news-card__excerpt {
  font-family: "Special Elite", monospace;
  font-size: 1.25rem;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 767px) {
  .news-card__excerpt {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.news-card__readmore {
  display: inline-block;
  margin-top: 8px;
  font-family: "Special Elite", monospace;
  font-size: 1rem;
  color: #8B0000;
  transition: color 0.3s ease-out;
}
@media (max-width: 767px) {
  .news-card__readmore {
    font-size: 0.875rem;
  }
}
.news-card__readmore:hover {
  color: #000000;
}

.article {
  max-width: 800px;
  margin: 0 auto;
}

.article__date {
  font-size: 0.875rem;
  color: #707070;
  margin-bottom: 16px;
}

.article__title {
  font-size: 3rem;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .article__title {
    font-size: 1.875rem;
  }
}

.article__image {
  width: 100%;
  margin-bottom: 32px;
}

.article__content {
  font-size: 1.25rem;
  line-height: 1.8;
}
.article__content p {
  margin-bottom: 1.5em;
}

.page-small-logo {
  position: fixed;
  top: 85px;
  left: 50px;
  z-index: 1001;
  width: 165px;
  height: 165px;
  background: black;
  border-radius: 50%;
  text-decoration: none;
  display: block;
}
.page-small-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .page-small-logo {
    display: none;
  }
}

.bio-btn-dluga {
  position: fixed;
  top: 260px;
  left: 50px;
  z-index: 1001;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #000000;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.7), 0 0 100px rgba(0, 0, 0, 0.4), 0 0 150px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Special Elite", monospace;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  line-height: 1.3;
  transition: all 0.3s ease-out;
}
.bio-btn-dluga:hover {
  background: #000000;
  color: #FFFFFF;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9), 0 0 120px rgba(0, 0, 0, 0.5), 0 0 180px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .bio-btn-dluga {
    position: fixed;
    top: auto;
    bottom: 20px;
    left: auto;
    right: 20px;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    background: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1001;
  }
  .bio-btn-dluga::after {
    content: " →";
    margin-left: 6px;
  }
  .bio-btn-dluga br {
    display: none;
  }
}
@media (max-width: 767px) {
  .bio-btn-dluga--back::after {
    content: none;
  }
  .bio-btn-dluga--back::before {
    content: "← ";
    margin-right: 6px;
  }
}

.bio-page {
  background: #FFFFFF;
  padding-top: 0;
}
@media (max-width: 767px) {
  .bio-page {
    padding-top: 0;
  }
}

.bio-page p {
  font-family: "Special Elite", monospace;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 16px;
}
.bio-page p:last-child {
  margin-bottom: 0;
}
.bio-page p em {
  font-style: italic;
}
@media (max-width: 767px) {
  .bio-page p {
    font-size: 14px;
  }
}

.bio-full {
  position: relative;
  width: 100%;
  line-height: 0;
  background: url("/images/bio_bg_full.jpeg") top center/100% auto no-repeat;
  aspect-ratio: 1920/8948;
}
@media (max-width: 767px) {
  .bio-full {
    aspect-ratio: auto;
    background: none;
    line-height: normal;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.bio-full__img {
  display: none;
}
@media (max-width: 767px) {
  .bio-full__img {
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 20px;
    background: #FFFFFF;
  }
}
@media (max-width: 767px) {
  .bio-full__img--small {
    width: 60%;
    margin: 0 auto;
    padding: 16px 0;
  }
}
.bio-full__bird {
  position: absolute;
  top: calc(3% + 195px);
  right: calc(12% - 120px);
  width: 6%;
  height: auto;
  z-index: 2;
}
@media (max-width: 767px) {
  .bio-full__bird {
    display: none;
  }
}
.bio-full__bird-bottom {
  position: absolute !important;
  display: block !important;
  top: 73%;
  left: 20%;
  width: 120px;
  height: auto;
  z-index: 10;
  transform: scaleX(-1);
  pointer-events: none;
}
@media (max-width: 767px) {
  .bio-full__bird-bottom {
    position: static !important;
    display: block !important;
    width: 100px;
    margin: 20px auto 40px;
    transform: scaleX(-1);
    z-index: auto;
  }
}
.bio-full__text-1, .bio-full__text-2 {
  border: 1px solid #333333;
}
@media (max-width: 767px) {
  .bio-full__text-1, .bio-full__text-2 {
    border: none;
  }
}
.bio-full__text-3, .bio-full__text-4, .bio-full__text-6 {
  border: 10px solid #333333;
}
@media (max-width: 767px) {
  .bio-full__text-3, .bio-full__text-4, .bio-full__text-6 {
    border: none;
  }
}
.bio-full__text-1 {
  position: absolute;
  left: 10.1%;
  top: 7.2%;
  width: 46.5%;
  background: rgba(255, 255, 255, 0.99);
  padding: 1.4% 1.8%;
}
.bio-full__text-1 p {
  font-size: clamp(12px, 1.2vw, 20px);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 767px) {
  .bio-full__text-1 {
    position: relative;
    left: 0;
    top: 0;
    width: auto;
    padding: 20px 20px 16px;
    background: #FFFFFF;
  }
  .bio-full__text-1 p {
    font-size: 14px;
  }
}
.bio-full__text-2 {
  position: absolute;
  right: 5%;
  top: 15.7%;
  width: 42%;
  background: rgba(255, 255, 255, 0.99);
  padding: 1.25% 1.56%;
}
.bio-full__text-2 p {
  font-size: clamp(12px, 1.2vw, 20px);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 767px) {
  .bio-full__text-2 {
    position: relative;
    right: 0;
    top: 0;
    width: auto;
    padding: 16px 20px;
    margin: 0;
    background: #FFFFFF;
  }
  .bio-full__text-2 p {
    font-size: 14px;
  }
}
.bio-full__text-3 {
  position: absolute;
  top: 19.4%;
  left: 1%;
  width: 47%;
  background: rgba(255, 255, 255, 0.99);
  padding: 1% 1.56%;
}
.bio-full__text-3 p {
  font-size: clamp(12px, 1.2vw, 20px);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 767px) {
  .bio-full__text-3 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background: #FFFFFF;
  }
  .bio-full__text-3 p {
    font-size: 14px;
  }
}
.bio-full__text-4 {
  position: absolute;
  top: 29.1%;
  left: 48.4%;
  width: 46%;
  background: rgba(255, 255, 255, 0.99);
  padding: 1% 1.56%;
}
.bio-full__text-4 p {
  font-size: clamp(12px, 1.2vw, 20px);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 767px) {
  .bio-full__text-4 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    margin: 0;
    background: #FFFFFF;
  }
  .bio-full__text-4 p {
    font-size: 14px;
  }
}
.bio-full__text-5 {
  position: absolute;
  top: 37%;
  left: 52%;
  width: 48%;
  background: rgba(255, 255, 255, 0.99);
  padding: 1.88% 1.56%;
}
.bio-full__text-5 p {
  font-size: clamp(12px, 1.2vw, 20px);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 767px) {
  .bio-full__text-5 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    margin: 0;
    background: #FFFFFF;
  }
  .bio-full__text-5 p {
    font-size: 14px;
  }
}
.bio-full__text-6 {
  position: absolute;
  top: 40.1%;
  left: 0;
  width: 49%;
  min-height: 11%;
  background: rgba(255, 255, 255, 0.99);
  padding: 2.6% 2.6%;
}
.bio-full__text-6 p {
  font-size: clamp(13px, 1.3vw, 22px);
  line-height: 1.6;
  margin: 10px 0 15px;
}
.bio-full__text-6 p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .bio-full__text-6 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 0;
    padding: 16px 20px;
    background: #FFFFFF;
  }
  .bio-full__text-6 p {
    font-size: 14px;
  }
}
.bio-full__text-7 {
  position: absolute;
  top: 59%;
  left: 52.5%;
  width: 45%;
  background: rgba(255, 255, 255, 0.99);
  padding: 1.3% 1.6%;
}
.bio-full__text-7 p {
  font-size: clamp(12px, 1.2vw, 20px);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 767px) {
  .bio-full__text-7 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background: #FFFFFF;
  }
  .bio-full__text-7 p {
    font-size: 14px;
  }
}
.bio-full__text-8 {
  position: absolute;
  top: 68.5%;
  left: 1%;
  width: 45%;
  background: rgba(255, 255, 255, 0.99);
  padding: 1.3% 1.6%;
}
.bio-full__text-8 p {
  font-size: clamp(12px, 1.2vw, 20px);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 767px) {
  .bio-full__text-8 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background: #FFFFFF;
  }
  .bio-full__text-8 p {
    font-size: 14px;
  }
}

.bio-intro {
  width: 100%;
  background: #000000;
  padding: 60px 80px;
}
.bio-intro__text {
  max-width: 1200px;
  margin: 0 auto;
}
.bio-intro__text p {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
}
@media (max-width: 767px) {
  .bio-intro {
    padding: 30px 20px;
  }
}

.bio-gazeta {
  position: relative;
  width: 100%;
  display: flex;
  gap: 0;
  line-height: 0;
  background: #FFFFFF;
}
.bio-gazeta__img {
  flex: 1;
  width: 33.333%;
  height: auto;
  display: block;
  object-fit: contain;
}
.bio-gazeta__text-overlay {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #FFFFFF;
  padding: 30px 35px;
  max-width: 420px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.bio-gazeta__text-overlay p {
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .bio-gazeta__text-overlay {
    position: relative;
    bottom: 0;
    right: 0;
    max-width: 100%;
    padding: 20px;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .bio-gazeta {
    flex-direction: column;
  }
  .bio-gazeta__img {
    width: 100%;
  }
}

.bio-two-cols {
  display: flex;
  align-items: flex-end;
  width: 100%;
  background: #FFFFFF;
}
.bio-two-cols__left {
  flex: 0 0 35%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px;
  line-height: 0;
}
.bio-two-cols__left img {
  width: 75%;
  max-width: 280px;
  height: auto;
  display: block;
}
.bio-two-cols__right {
  flex: 1;
  line-height: 0;
}
.bio-two-cols__right img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .bio-two-cols {
    flex-direction: column;
    align-items: center;
  }
  .bio-two-cols__left {
    flex: none;
    padding: 30px 20px;
  }
  .bio-two-cols__left img {
    width: 50%;
  }
  .bio-two-cols__right {
    width: 100%;
  }
}

.bio-full-image {
  width: 100%;
  line-height: 0;
  background: #FFFFFF;
}
.bio-full-image img {
  width: 100%;
  height: auto;
  display: block;
}
.bio-full-image--bird {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 60px 100px;
}
@media (max-width: 767px) {
  .bio-full-image--bird {
    padding: 20px 20px 60px;
  }
}

.bio-theater {
  display: flex;
  align-items: flex-start;
  width: 100%;
  background: #FFFFFF;
  gap: 0;
}
.bio-theater__characters {
  flex: 0 0 28%;
  padding: 50px 40px;
  line-height: 0;
}
.bio-theater__characters img {
  width: 100%;
  height: auto;
  display: block;
}
.bio-theater__content {
  flex: 1;
  padding: 50px 60px 50px 20px;
}
.bio-theater__birds {
  width: 100%;
  margin-bottom: 30px;
  line-height: 0;
}
.bio-theater__birds img {
  width: 100%;
  height: auto;
  display: block;
}
.bio-theater__text p {
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .bio-theater {
    flex-direction: column;
  }
  .bio-theater__characters {
    flex: none;
    width: 50%;
    margin: 0 auto;
    padding: 30px 20px;
  }
  .bio-theater__content {
    padding: 0 20px 30px;
  }
  .bio-theater__birds {
    margin-bottom: 20px;
  }
}

.bio-ending {
  width: 100%;
  background: #FFFFFF;
  padding: 40px 0 60px;
}
.bio-ending__text {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
}
.bio-ending__text p {
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .bio-ending {
    padding: 30px 0 40px;
  }
  .bio-ending__text {
    padding: 0 20px;
  }
}

.bio-sidenav {
  position: fixed;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 0;
  top: 460px;
  left: 50px;
  width: 165px;
}
@media (max-width: 767px) {
  .bio-sidenav {
    bottom: 20px;
    left: 16px;
    top: auto;
    width: auto;
    max-width: 200px;
  }
}
@media (min-width: 1400px) {
  .bio-sidenav {
    top: 120px;
    left: auto;
    right: 40px;
    width: 180px;
  }
}
.bio-sidenav__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Special Elite", monospace;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  background: #000000;
  padding: 10px 14px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  cursor: grab;
  user-select: none;
}
.bio-sidenav__title::before {
  content: "⠿";
  font-size: 14px;
  opacity: 0.5;
}
.bio-sidenav__title:active {
  cursor: grabbing;
}
@media (max-width: 767px) {
  .bio-sidenav__title {
    font-size: 11px;
    padding: 10px 16px;
    border-radius: 30px;
    cursor: pointer;
  }
  .bio-sidenav__title::before {
    content: "☰";
    font-size: 13px;
    opacity: 0.8;
  }
}
.bio-sidenav__link {
  display: block;
  font-family: "Special Elite", monospace;
  font-size: 13px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-top: none;
  background: #FFFFFF;
  line-height: 1.4;
  transition: all 0.3s ease-out;
}
.bio-sidenav__link--active {
  background: #000000;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .bio-sidenav__link {
    font-size: 11px;
    padding: 8px 12px;
    display: none;
    border-radius: 0;
  }
  .bio-sidenav.is-open .bio-sidenav__link {
    display: block;
  }
}
@media (max-width: 767px) {
  .bio-sidenav.is-open {
    max-width: 220px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 767px) {
  .bio-sidenav.is-open .bio-sidenav__title {
    border-radius: 0;
  }
  .bio-sidenav.is-open .bio-sidenav__title::before {
    content: "✕";
  }
}

.bio-dluga {
  background: #FFFFFF;
  padding: 80px 30px 80px 240px;
}
.bio-dluga__content {
  max-width: 900px;
}
.bio-dluga__section {
  margin-bottom: 50px;
  scroll-margin-top: 90px;
}
.bio-dluga__section h2 {
  font-family: "Special Elite", monospace;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}
.bio-dluga__section p {
  font-family: "Special Elite", monospace;
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 16px;
  color: #000000;
}
.bio-dluga__section p:last-child {
  margin-bottom: 0;
}
.bio-dluga__source {
  font-size: 13px !important;
  color: rgba(0, 0, 0, 0.5) !important;
  font-style: italic;
}
.bio-dluga__section--biblio {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 40px;
}
.bio-dluga__biblio {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bio-dluga__biblio li {
  font-family: "Special Elite", monospace;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}
.bio-dluga__biblio li::before {
  content: "–";
  position: absolute;
  left: 0;
}
.bio-dluga__biblio li em {
  font-style: italic;
}
@media (max-width: 767px) {
  .bio-dluga {
    padding: 30px 20px 60px;
  }
  .bio-dluga__section {
    scroll-margin-top: 110px;
  }
  .bio-dluga__section h2 {
    font-size: 20px;
  }
  .bio-dluga__section p {
    font-size: 14px;
  }
}

.music-intro {
  margin-bottom: 48px;
  font-size: 1.25rem;
}

.music-category {
  margin-bottom: 64px;
}

.music-category__title {
  font-size: 1.875rem;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #8B0000;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .music-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .music-grid {
    grid-template-columns: 1fr;
  }
}

.music-card {
  background: #E3E3E3;
  padding: 24px;
  transition: transform 0.3s ease-out;
}
.music-card:hover {
  transform: translateY(-4px);
}

.music-card__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 16px;
}

.music-card__title {
  font-family: "Hiragino Maru Gothic ProN", "Helvetica Neue", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.music-card__content {
  font-size: 0.875rem;
  color: #707070;
}

.audio-player {
  margin-top: 16px;
}
.audio-player audio {
  width: 100%;
}

.lit-intro {
  margin-bottom: 48px;
}

.lit-intro__text {
  font-size: 1.25rem;
  margin-bottom: 32px;
}

.lit-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.lit-nav__link {
  font-family: "Hiragino Maru Gothic ProN", "Helvetica Neue", sans-serif;
  font-size: 1.25rem;
  padding: 8px 16px;
  border: 1px solid #E3E3E3;
  transition: all 0.3s ease-out;
}
.lit-nav__link:hover, .lit-nav__link--active {
  background: #8B0000;
  color: #FFFFFF;
  border-color: #8B0000;
}

.biblio-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.biblio-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid #E3E3E3;
}
@media (max-width: 767px) {
  .biblio-item {
    grid-template-columns: 1fr;
  }
}

.biblio-item__year {
  font-family: "Hiragino Maru Gothic ProN", "Helvetica Neue", sans-serif;
  font-size: 1.875rem;
  color: #8B0000;
}

.biblio-item__title {
  font-family: "Hiragino Maru Gothic ProN", "Helvetica Neue", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.biblio-item__description {
  font-size: 1rem;
  color: #333333;
  line-height: 1.8;
}

.biblio-item__cover {
  width: 120px;
  margin-top: 16px;
}

.lam-intro {
  margin-bottom: 48px;
  font-size: 1.25rem;
}

.lam-section {
  margin-bottom: 64px;
}

.lam-section__title {
  font-size: 1.875rem;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #FF0000;
}

.lam-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .lam-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .lam-grid {
    grid-template-columns: 1fr;
  }
}

.lam-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.lam-card:hover .lam-card__overlay {
  opacity: 1;
}

.lam-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s ease-out;
}
.lam-card:hover .lam-card__image {
  transform: scale(1.05);
}

.lam-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.lam-card__title {
  color: #FFFFFF;
  font-family: "Hiragino Maru Gothic ProN", "Helvetica Neue", sans-serif;
  font-size: 1.25rem;
  text-align: center;
}

.kontakt-form-wrap {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .kontakt-form-wrap {
    padding: 20px;
    max-width: 100%;
  }
}

.kontakt__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kontakt__form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kontakt__label {
  font-family: "Special Elite", monospace;
  font-size: 0.875rem;
  color: #707070;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.kontakt__field {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background: #FFFFFF;
  color: #000000;
  outline: none;
  transition: border-color 0.3s ease-out;
}
.kontakt__field:focus {
  border-color: rgba(0, 0, 0, 0.4);
}
.kontakt__field--textarea {
  resize: vertical;
  min-height: 140px;
}

.kontakt__submit {
  font-family: "Special Elite", monospace;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  border: 1px solid #000000;
  background: #000000;
  color: #FFFFFF;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease-out;
}
.kontakt__submit:hover {
  background: #FFFFFF;
  color: #000000;
}

.kontakt__message {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  padding: 14px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.kontakt__message--success {
  background: rgba(46, 204, 113, 0.1);
  color: #27ae60;
  border: 1px solid rgba(46, 204, 113, 0.3);
}
.kontakt__message--error {
  background: rgba(231, 76, 60, 0.1);
  color: #c0392b;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.3s ease-out;
}

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #FFFFFF;
  font-size: 0.875rem;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}
.gallery-item:hover .gallery-item__caption {
  transform: translateY(0);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}
.lightbox.is-open {
  display: flex;
}

.lightbox__image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #FFFFFF;
  font-size: 32px;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}
.lightbox__close:hover {
  opacity: 0.7;
}

.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
@media (max-width: 767px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }
}

.admin-sidebar {
  background: #000000;
  color: #FFFFFF;
  padding: 24px;
}
@media (max-width: 767px) {
  .admin-sidebar {
    padding: 16px;
  }
}

.admin-sidebar__title {
  font-family: "Hiragino Maru Gothic ProN", "Helvetica Neue", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 767px) {
  .admin-sidebar__nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.admin-sidebar__link {
  display: block;
  padding: 8px 12px;
  font-size: 0.875rem;
  transition: background 0.3s ease-out;
}
.admin-sidebar__link:hover, .admin-sidebar__link--active {
  background: rgba(255, 255, 255, 0.1);
}

.admin-main {
  padding: 32px;
}
@media (max-width: 767px) {
  .admin-main {
    padding: 16px;
  }
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.admin-header__title {
  font-size: 1.875rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: "Hiragino Maru Gothic ProN", "Helvetica Neue", sans-serif;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: #333333;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #E3E3E3;
  font-size: 1rem;
  transition: border-color 0.3s ease-out;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #8B0000;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-checkbox input {
  width: 18px;
  height: 18px;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  font-family: "Hiragino Maru Gothic ProN", "Helvetica Neue", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease-out;
  cursor: pointer;
}

.btn--primary {
  background: #8B0000;
  color: #FFFFFF;
}
.btn--primary:hover {
  background: #1b14cc;
}

.btn--secondary {
  background: #E3E3E3;
  color: #000000;
}
.btn--secondary:hover {
  background: #ccc;
}

.btn--danger {
  background: #FF0000;
  color: #FFFFFF;
}
.btn--danger:hover {
  background: #cc0000;
}

.btn--small {
  padding: 6px 12px;
  font-size: 0.75rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th, .admin-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #E3E3E3;
}
.admin-table th {
  font-family: "Hiragino Maru Gothic ProN", "Helvetica Neue", sans-serif;
  font-size: 0.875rem;
  color: #707070;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.admin-table .actions {
  display: flex;
  gap: 8px;
}

.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #E3E3E3;
}

.login-box {
  background: #FFFFFF;
  padding: 48px;
  width: 100%;
  max-width: 400px;
}
@media (max-width: 767px) {
  .login-box {
    padding: 24px;
    margin: 16px;
  }
}

.login-box__title {
  text-align: center;
  margin-bottom: 32px;
}

.login-box__error {
  background: #ffcccc;
  color: #FF0000;
  padding: 10px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
