.hero {
  position: relative;
  min-height: min(100vh, 56rem);
  display: flex;
  align-items: flex-end;
  padding-block: 8rem 6rem;
  overflow: hidden;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #050505;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__content--inner {
  max-width: 44rem;
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero__text {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  opacity: 0.9;
  max-width: 36rem;
}

@media (max-width: 1024px) {
  .hero {
    padding-block: 6.5rem 4rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding-block: 5.5rem 3.5rem;
    align-items: flex-end;
  }

  .hero__title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .hero__video {
    opacity: 0.55;
  }
}


.home .site-main {
  background-color: #050505;
}

.about {
  padding-block: 5rem;
  color: #fff;
}

.about__header {
  margin-bottom: 2.5rem;
}

.about__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.about__title {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.about__rule {
  display: block;
  width: min(100%, 12rem);
  height: 2px;
  margin-top: 1.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(237, 21, 102, 0.15) 100%);
}

.about__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

.about__text {
  max-width: 36rem;
}

.about__text p {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about__point {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.about__point-num {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--primary);
  line-height: 1.4;
}

.about__point-title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.about__point-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.75;
}

.about__media {
  position: relative;
  overflow: hidden;
  background: #111;
}

.about__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.55) 100%);
}

.about__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  transition: transform 700ms ease;
}

.about__media:hover .about__image {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .about__body {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .about__title {
    max-width: none;
  }

  .about__image {
    aspect-ratio: 16 / 10;
  }
}

.artists {
  padding-block: 5rem;
  color: #fff;
}

.artists__intro {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.artists__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.artists__text {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5;
  opacity: 0.9;
}

.artists__slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 0.25rem;
}

.artists__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff !important;
  text-decoration: none;
}

.artists__card-media {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
}

.artists__card-media img,
.artists__card-image {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 500ms ease;
}

.artists__card:hover .artists__card-media img,
.artists__card:hover .artists__card-image {
  transform: scale(1.04);
}

.artists__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.artists__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.25;
}

.artists__card-excerpt {
  font-size: 0.9375rem;
  line-height: 1.45;
  opacity: 0.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artists__nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.artists__nav-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
  cursor: pointer;
  position: relative;
  transition: opacity 300ms;
}

.artists__nav-btn:hover {
  opacity: 0.8;
}

.artists__nav-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.artists__nav-btn--prev::before {
  transform: translateX(0.15rem) rotate(135deg);
}

.artists__nav-btn--next::before {
  transform: translateX(-0.15rem) rotate(-45deg);
}

.contacts {
  padding-block: 5rem;
  color: #fff;
}

.contacts__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem 4rem;
  align-items: start;
}

.contacts__intro {
  max-width: 32rem;
  margin-bottom: 2.5rem;
}

.contacts__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.contacts__text {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5;
  opacity: 0.9;
}

.contacts__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contacts__person {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contacts__person-role {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.65;
}

.contacts__person-name {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
}

.contacts__person-phone,
.contacts__person-email {
  color: #fff !important;
  text-decoration: none;
  font-size: 1.0625rem;
  line-height: 1.4;
  width: fit-content;
  transition: opacity 300ms;
}

.contacts__person-phone:hover,
.contacts__person-email:hover {
  opacity: 0.8;
}

.contacts__form .wpcf7 {
  width: 100%;
}

.contacts__form p {
  margin-bottom: 0;
}

.contacts__form .wpcf7-form {
  display: flex;
  flex-direction: column;
}

.contacts__form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9375rem;
  opacity: 0.9;
}

.contacts__form input[type="text"],
.contacts__form input[type="email"],
.contacts__form input[type="tel"],
.contacts__form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font: inherit;
  outline: none;
  transition: border-color 300ms;
}

.contacts__form input:focus,
.contacts__form textarea:focus {
  border-color: #fff;
}

.contacts__form input::placeholder,
.contacts__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contacts__form .wpcf7-submit,
.contacts__form input[type="submit"] {
  margin-top: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: 0;
  background: #fff;
  color: #050505;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  transition: opacity 300ms;
}

.contacts__form .wpcf7-submit:hover,
.contacts__form input[type="submit"]:hover {
  opacity: 0.9;
}

.contacts__form .wpcf7-not-valid-tip,
.contacts__form .wpcf7-response-output {
  margin: 0;
  color: #fff;
}

@media (max-width: 900px) {
  .contacts__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
