/* Inner pages — extends the VVS Webflow design system */

.block-product[data-bg] {
  background-image: none;
  background-color: #1b1a1d;
  background-size: cover;
  background-position: center;
}

.navbar-3.w-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 78vh;
  overflow: hidden;
}

.page-hero-media,
.page-hero-media video,
.page-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #1b1a1dcc 0%, #1b1a1d66 38%, #1b1a1de6 100%);
  pointer-events: none;
}

.page-hero .contentwrapper-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  min-height: 0;
  height: auto;
  margin: 0 auto;
  padding: 160px 48px 72px;
}

.page-hero .heading1_hero,
.artists-profile.events .heading1_hero {
  height: auto;
  line-height: 0.95em;
  font-size: clamp(40px, 9vw, 96px);
}

.page-hero .text-span {
  font-size: clamp(28px, 5vw, 50px);
}

.page-hero .text-span {
  margin-top: 8px;
}

.page-section {
  padding: 88px 0;
}

.page-section.tight {
  padding-top: 48px;
}

.container.hero-contact {
  flex-flow: column;
  min-height: 0;
  padding-top: 0;
  display: flex;
}

.container.hero-about {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 56px;
  max-width: 1400px;
  padding-top: 0;
}

.container.story-split .info-about.images-wrapper {
  min-height: 520px;
}

.image-about,
.image-about-small {
  border-radius: 8px;
  filter: saturate(0.92);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 40px;
}

.value-card {
  border: 1px dashed var(--colors--accent1-border);
  border-radius: 8px;
  padding: 32px 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(180deg, #ffffff08, #ffffff00);
}

.value-card .label-intro {
  align-self: flex-start;
  font-size: 1.1em;
}

.value-index {
  font-family: var(--fonts--headings);
  color: var(--colors--accent1);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 28px;
  margin: 0 0 16px;
}

.contact-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  width: 100%;
}

.contact-form-col {
  width: 58%;
}

.contact-info-col {
  width: 42%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .text-field {
  width: 50%;
}

.text-field,
select.text-field,
textarea.text-field {
  width: 100%;
  color: var(--colors--text-light2);
  background-color: #ffffff08;
  border: 1px solid #606060;
  border-radius: 4px;
  font-family: var(--font--paragraph);
  font-size: 14px;
  font-weight: 300;
}

.text-field:focus,
select.text-field:focus,
textarea.text-field:focus {
  outline: none;
  border-color: var(--colors--accent1);
}

textarea.text-field {
  min-height: 160px;
  resize: vertical;
  padding: 16px;
  line-height: 1.5;
}

select.text-field {
  height: 48px;
  padding: 0 12px;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--colors--accent1-muted) 50%),
    linear-gradient(135deg, var(--colors--accent1-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-contact .button-primary.inverted {
  width: auto;
  min-width: 200px;
  align-self: flex-start;
  border: 0;
  cursor: pointer;
  margin-top: 8px;
}

.inquiry-card {
  border: 1px dashed var(--colors--accent1-border);
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  display: block;
  transition: border-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.inquiry-card:hover {
  border-color: var(--colors--accent1);
  background-color: #ffffff08;
}

.inquiry-card h3 {
  font-size: 20px;
  margin: 0 0 8px;
}

.inquiry-card .paragraph {
  margin: 0;
}

.contact-note {
  margin-top: 8px;
}

.page-hero .label-wrapper {
  margin-bottom: 16px;
}

@media screen and (max-width: 991px) {
  .page-hero {
    min-height: 70vh;
  }

  .page-hero .contentwrapper-hero {
    height: auto;
    min-height: 0;
    margin-bottom: 0;
    padding: 140px 24px 56px;
  }

  .container.hero-about {
    flex-direction: column;
    gap: 32px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .container.hero-contact {
    padding-top: 0;
  }

  .contact-layout {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form-col,
  .contact-info-col {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row .text-field {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .page-hero .heading1_hero {
    font-size: clamp(36px, 12vw, 48px);
    line-height: 1em;
  }

  .page-hero .text-span {
    font-size: clamp(22px, 8vw, 32px);
  }

  .page-section {
    padding: 56px 0;
  }

  .value-card {
    min-height: 0;
  }
}
