/* =====================
RESET & BASE
===================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 100;
  background: #000;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-list a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  font-family: "Garet", sans-serif;
  font-size: clamp(12px, 2.5vw, 16px);
}

.nav-item-project {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: black;
  padding: 10px 0;
  display: none;
  flex-direction: column;
}

.nav-submenu li {
  list-style: none;
}

.nav-submenu a {
  display: block;
  padding: 8px 16px;
  white-space: nowrap;
}

.nav-item-project:hover .nav-submenu {
  display: flex;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: #fff;
}
.nav {
  display: flex;
  align-items: center;
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
  margin-left: 1rem;
}

.lang-switch button {
  background: none;
  border: none;
  color: #fff;
  font-family: "Garet", sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  opacity: 0.6;
}

.lang-switch button.active {
  opacity: 1;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.3);
}

.hero-overlay {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.hero-title {
  font-family: "Noto Serif Display ExtraCondensed", serif;
  font-style: italic;
  font-weight: 200;
  font-size: clamp(48px, 12vw, 165px);
  line-height: 0.95;
  white-space: nowrap;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-family: "Garet", sans-serif;
  font-size: clamp(12px, 2.5vw, 25px);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 12px;
  white-space: nowrap;
}

/* RESPONSIVE NAV */
@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    padding: 1.5rem;
    gap: 1rem;
  }

  .nav-list.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
  .hero-img {
    object-fit: contain;
    transform: scale(1.3);
  }
    .hero {
    height: 70vh;
  }
   

 
}

/* O PROJEKCIE – LAYOUT */
.project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.project-left {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.project-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.project-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  filter: grayscale(100%);
  z-index: 1;
}

.project-heading {
  position: relative;
  z-index: 3;
  padding: 6rem 4rem;
}

.project-title {
  font-family: "Noto Serif Display ExtraCondensed", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 90px);
  color: #d6300c;
  line-height: 1;
}

.project-subtitle {
  font-family: "Garet", sans-serif;
  font-size: clamp(12px, 2.5vw, 25px);
  letter-spacing: 6px;
  color: #ffffff;
  margin-top: 0.5rem;
  font-weight: 300;
  white-space: nowrap;
}

.project-right {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  background-color: #141313;
}

.project-right p {
  font-size: clamp(15px, 1.1vw, 20px);
  line-height: 1.7;
  color: #fffff1;
  margin-bottom: 1.8rem;
  max-width: 520px;
  font-family: "Garet", sans-serif;
}

.project-right strong {
  font-weight: 600;
}

.highlight {
  font-weight: 600;
  color: #b5231f;
}
.project-subtitle {
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.3s;
}

/* podświetlenie aktywnego projektu */
.project-subtitle.active {
  background-color: #8d8b8b; /* np. jasne tło */
  font-weight: bold;
}
@media (max-width: 900px) {
  .project {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .project-left {
    min-height: 60vh;
  }

  .project-heading,
  .project-right {
    padding: 4rem 2rem;
  }
}

/* O NAS */
.about-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
}

.about-section .about-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  z-index: 0;
  transition: transform 0.5s ease;
}

@media (min-width: 1600px) {
  .about-section .about-bg {
    transform: scale(1.2);
    object-position: center top;
  }
}
@media (max-width: 900px) {
  .about-section .about-text p {
    margin-bottom: 1.6rem;
  }
}
.about-section .about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

.about-section .about-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 4rem;
}

.about-section .about-left {
  max-width: 520px;
}

.about-section .about-title {
  font-family: "Noto Serif Display ExtraCondensed", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 90px);
  color: #d6300c;
  line-height: 1;
  margin-bottom: 2rem;
}

.about-section .about-text {
  font-family: "Garet", sans-serif;
  font-size: clamp(15px, 1.1vw, 20px);
  line-height: 1.7;
  color: #fffff1;
  padding-left: 10%;
}

.about-section .about-right {
  align-self: flex-end;
  max-width: 420px;
}

.about-section .about-team-title {
  font-family: "Garet", sans-serif;
  font-size: clamp(14px, 1.1vw, 14px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fffff1;
}

.about-section .about-line {
  width: 100%;
  max-width: 360px;
  height: 1px;
  background-color: #fffff1;
  margin: 1rem 0 2rem;
}

.about-section .about-team-list {
  list-style: none;
  padding: 0;
}

.about-section .about-team-list li {
  font-family: "Garet", sans-serif;
  font-size: clamp(11px, 1.1vw, 16px);
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  color: #fffff1;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-section .about-inner {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
  }

  .about-section .about-right {
    margin-top: 3rem;
    align-self: flex-start;
  }
}

/*  SONORE LAB */

.sonorelab {
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 100vh;
  overflow: hidden;
}

.sonorelab-left {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #141313;
}

.sonorelab-title {
  font-family: "Noto Serif Display ExtraCondensed", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 90px);
  line-height: 1;
  color: #c22200;
  margin-bottom: 0.2em;
}

.sonorelab-text {
  font-family: "Garet", sans-serif;
  font-size: clamp(15px, 1.1vw, 20px);
  line-height: 1.7;
  color: #fffff1;
  max-width: 520px;
}

.sonorelab-subtitle {
  display: block;
  /* text-align: center; */
  margin-top: 0;
  letter-spacing: 6px;
  color: #ffffff;
  font-weight: 300;
  white-space: nowrap;
  font-size: clamp(12px, 2.5vw, 25px);
}

.sonorelab-right {
  position: relative;
  overflow: hidden;
}

.sonorelab-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  transform: scale(1.15);
}

@media (max-width: 900px) {
  .sonorelab {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sonorelab-left {
    min-height: 60vh;
  }

  .sonorelab-right {
    min-height: auto;
  }

  .sonorelab-image {
    position: relative;
    height: auto;
    object-fit: contain;
    transform: none;
  }
  .recordings-title {
    padding: 2.5rem 2rem;
  }

  .recordings-link {
    bottom: 2.5rem;
  }
  .recordings-button {
    white-space: nowrap;
  }
}

@media (min-width: 901px) {
  .sonorelab-title {
    white-space: nowrap;
  }
}

/* NAGRANIA  */

.recordings-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.recordings-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  z-index: 0;
  transform: scale(1.2);
}

.recordings-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.recordings-title {
  position: relative;
  z-index: 2;
  padding: 4rem;
  font-family: "Noto Serif Display ExtraCondensed", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 90px);
  color: #d6300c;
}

.recordings-link {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin-bottom: 3rem;
}

.recordings-button {
  font-family: "Garet", sans-serif;
  font-size: clamp(12px, 1.2vw, 15px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fffff1;
  text-decoration: none;
  padding: 0.8rem 2.5rem;
  border: 1px solid rgba(255, 255, 241, 0.6);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
    white-space: normal;
  text-align: center;
}

.recordings-button:hover {
  background-color: rgba(255, 255, 241, 0.1);
  border-color: #fffff1;
}

.recordings-youtube {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.recordings-youtube .youtube-button {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 241, 0.6);
  color: #fffff1;
  padding: 0.8rem 2rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-family: "Garet", sans-serif;
  font-size: clamp(12px, 1.2vw, 15px);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  white-space: normal;
  text-align: center;
  width: 100%;
  max-width: 420px;
}

.recordings-youtube .youtube-button:hover {
  background-color: rgba(255, 255, 241, 0.1);
  border-color: #fffff1;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .recordings-youtube  {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 300px;
    max-width: 90vw;
    justify-content: center;
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
   .recordings-button {
        display: block;
    width: 300px;
    max-width: 90vw;
    margin: 0 auto 1rem;
  }
}

/* 
   FOOTER – KONTAKT */

.contact-footer {
  width: 100%;
  background-color: #000;
  color: #fffff1;
}

.contact-top {
  min-height: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  position: relative;
}

.contact-title {
  text-align: center;
  font-family: "Noto Serif Display ExtraCondensed", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 90px);
  color: #d6300c;
  margin-bottom: 3rem;
}

.contact-people {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.contact-person {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: "Garet", sans-serif;
  font-size: clamp(15px, 1.1vw, 25px);
  text-transform: uppercase;
  color: #fffff1;
  text-align: center;
}

.contact-person .role {
  opacity: 0.85;
}

.contact-bottom {
  position: relative;
  min-height: 65vh;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  filter: grayscale(100%);
  z-index: 0;
}

/* INFO */
.contact-info {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;

  font-family: "Garet", sans-serif;

  font-weight: 600;
  text-transform: uppercase;
  color: #fffff1;
  text-align: center;
}

@media (max-width: 900px) {
  .contact-top {
    padding: 3rem 2rem;
  }

  .contact-people {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }

  .contact-info {
    font-size: clamp(15px, 1.1vw, 25px);
    padding: 2rem;
    text-align: center;
    bottom: 1.2rem;
  }
  .contact-bg {
    object-fit: contain;
    object-position: center;
    height: auto;
  }
}

.contact-footer a.phone,
.contact-info a {
  color: #fffff1;
  text-decoration: none;
  cursor: pointer;
}

.contact-footer a.phone:hover {
  color: #b5231f;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #141313;
  color: #fffff1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  font-size: 14px;
  line-height: 1.6;
  max-width: 900px;
}

.cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-btn {
  background: transparent;
  border: 1px solid #fffff1;
  color: #fffff1;
  padding: 8px 18px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.25s ease;
}

.cookie-btn:hover {
  background-color: rgba(255, 255, 241, 0.08);
}
.cookie-link {
  color: #fffff1;
  font-size: 12px;
  text-decoration: underline;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.cookie-link:hover,
.cookie-link:focus {
  color: #fffff1;
  opacity: 1;
}

.cookies-page {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  color: #fffff1;
}

.cookies-page h1,
.cookies-page h2 {
  margin-bottom: 15px;
}

.cookies-page p,
.cookies-page li {
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;

  padding: 1rem 0 1.2rem;
  background-color: #000;
}

.footer-socials a {
  color: #fffff1;
  font-size: 22px;
  opacity: 0.8;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.footer-socials a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.project-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.project-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.project-dots button.active {
  background: #fff;
}
