/* ---------- HERO SECTION ---------- */

.hero-section {
  display: flex;
  padding: 6rem 0rem;
  padding-top: calc(var(--navbar-height) + 6rem);
  flex-direction: column;
  gap: 4rem;
}

.hero-title {
  margin: 0 4rem;
  font: var(--f-display-h2);
  color: var(--neutral-950);
  text-transform: uppercase;
  max-width: 18ch;
}

.text-highlight--image {
  background-image: url(/assets/media/images/_global/background-text-orange.avif);
  background-color: var(--primary-500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
}
.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.hero-image-container {
  width: 500px;
  height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  flex-shrink: 0;
}

.hero-container-image--small {
  width: 300px !important;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- CITATION SECTION ---------- */
.citation-section {
  display: flex;
  padding: 6rem 4rem;
  flex-direction: column;
}

.citation-title {
  font: var(--f-display-h3);
  color: var(--neutral-950);
}

/* ---------- TEAM SECTION ---------- */
.team-section {
  padding: 6rem 4rem;
  display: flex;
  gap: 4rem;
}

.members-container {
  display: flex;
  gap: 2rem;
}

.members-item {
  height: 500px;
  width: 440px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.members-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 1;
  border-radius: 16px;
  border: 1px solid var(--neutral-100);
}

.members-absolute-container {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: var(--neutral-200);
  border: 1px solid var(--neutral-100);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.members-title-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.members-name {
  color: var(--neutral-950);
  font: var(--f-heading-h6);
}

.members-role {
  color: var(--neutral-700);
  font: var(--f-text-s);
  text-transform: uppercase;
}

.members-separator {
  height: 1px;
  background-color: var(--neutral-300);
}

.members-text {
  color: var(--neutral-800);
  font: var(--f-text-m);
}

.team-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.team-title-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team-title {
  color: var(--neutral-950);
  font: var(--f-heading-h4);
}

.team-subtitle {
  color: var(--neutral-600);
  font: var(--f-text-xl);
}

.team-social-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-social-title {
  color: var(--neutral-600);
  font: var(--f-heading-h6);
}

.team-social {
  color: var(--neutral-950);
  font: var(--f-heading-h5);
  transition: var(--t200);
}

.team-social:hover {
  color: var(--primary-500);
  transition: var(--t200);
}

/* ---------- WORD TRANSITION SECTION ---------- */
.word-transition {
  display: flex;
  padding: 4rem 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  overflow: hidden;
}

.big-word {
  font: var(--f-display-h1);
  font-size: 8.5rem;
  transform: translateX(-30%);
}

.big-word:last-child {
  align-self: flex-end;
  transform: translateX(30%);
}

/* ---------- SERVICES SECTION ---------- */
.services-section {
  display: flex;
  padding: 8rem 4rem;
  flex-direction: column;
  gap: 4rem;
}

.services-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.services-title-container {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.services-number {
  font: var(--f-display-h6);
  min-width: 32px;
}

.services-title {
  font: var(--f-display-h3);
  color: var(--neutral-950);
  line-height: 0.75;
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 230px;
}

.services-item {
  font: var(--f-text-xl);
  color: var(--neutral-600);
}

.services-separator {
  height: 1px;
  background-color: var(--neutral-300);
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {
  /* ---------- HERO SECTION ---------- */

  .hero-section {
    display: flex;
    padding: 4rem 0rem;
    padding-top: calc(var(--navbar-height) + 4rem);
    gap: 4rem;
  }

  .hero-title {
    margin: 0 2rem;
    font: var(--f-display-h5);
    font-size: 2.25rem;
    max-width: unset;
  }

  .hero-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    overflow: hidden;
  }
  .hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .hero-image-container {
    width: 300px;
    height: 280px;
  }

  .hero-container-image--small {
    width: 200px !important;
  }

  /* ---------- HERO SECTION ---------- */
  .citation-section {
    padding: 4rem 2rem;
  }

  .citation-title {
    font: var(--f-display-h5);
  }

  /* ---------- TEAM SECTION ---------- */
  .team-section {
    padding: 4rem 2rem;
    gap: 2rem;
    flex-direction: column;
  }

  .members-container {
    flex-direction: column;
  }

  .members-item {
    height: 400px;
    width: 100%;
  }

  .team-wrapper {
    justify-content: flex-start;
    gap: 2rem;
  }

  .team-title-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .team-title {
    font: var(--f-heading-h4);
  }

  .team-subtitle {
    font: var(--f-text-l);
  }

  /* ---------- WORD TRANSITION SECTION ---------- */
  .big-word {
    font: var(--f-display-h3);
    transform: translateX(-100%);
  }

  .big-word:last-child {
    transform: translateX(100%);
  }

  /* ---------- SERVICES SECTION ---------- */
  .services-section {
    padding: 6rem 2rem;
    gap: 4rem;
  }

  .services-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
  }

  .services-title-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .services-title {
    font: var(--f-display-h3);
  }
}

@media screen and (max-width: 480px) {
}
